Skip to content

Instantly share code, notes, and snippets.

@swawa-yu
Created June 17, 2024 05:38
Show Gist options
  • Save swawa-yu/ba45e65a6ccc8fda9929fbfdf434236f to your computer and use it in GitHub Desktop.
Save swawa-yu/ba45e65a6ccc8fda9929fbfdf434236f to your computer and use it in GitHub Desktop.
IchigoJamで気をつけること

行が折り返されているだけで、改行できていない

10 GOSUB 30
20 PRINT "20":RTN
30 PRINT "30":RTN

だと思っていたら

10 GOSUB 30
20 PRINT "20":RTN30 PRINT "30":RTN

だった...
みたいなパターン。この場合Error in Line 20みたいなことを言われる。 (2024-06-17)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment