2021-05-14 22:56:41 +00:00
|
|
|
// This is the code library.
|
|
|
|
|
|
|
|
export default `
|
2021-05-15 13:02:13 +00:00
|
|
|
new Circle({
|
|
|
|
point: [200, 200],
|
|
|
|
})
|
2021-05-14 22:56:41 +00:00
|
|
|
|
2021-05-15 13:02:13 +00:00
|
|
|
new Rectangle({
|
|
|
|
point: [400, 300],
|
|
|
|
})
|
2021-05-14 22:56:41 +00:00
|
|
|
`
|