Skip to content

Instantly share code, notes, and snippets.

@astralaster
Created July 11, 2023 08:46
Show Gist options
  • Select an option

  • Save astralaster/72bee558ec3219a33f6749bbbd661976 to your computer and use it in GitHub Desktop.

Select an option

Save astralaster/72bee558ec3219a33f6749bbbd661976 to your computer and use it in GitHub Desktop.
10 PRINT "Start"
20 VDU 23,0,&D0,
30 A$="issquare(2)"
40 L%=LEN(A$)
49 VDU L%;
50 FOR I%=1 TO L%
51 B$=MID$(A$,I%,1)
60 VDU ASC(B$),
70 NEXT
80 VDU 23,0,&D1
@astralaster
Copy link
Author

astralaster commented Jul 11, 2023

A$ is the lua code
VDU 23,0,&D0,length,luacode to upload code
VDU 23,0,&D1 to run the uploaded code

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