選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

code-as-string.ts 127B

1234567891011
  1. // This is the code library.
  2. export default `
  3. new Circle({
  4. point: [200, 200],
  5. })
  6. new Rectangle({
  7. point: [400, 300],
  8. })
  9. `