Skip to content

Instantly share code, notes, and snippets.

@intoinside
Last active November 16, 2022 21:32
Show Gist options
  • Save intoinside/2ee45bc2d69cadd98e0337847e526146 to your computer and use it in GitHub Desktop.
Save intoinside/2ee45bc2d69cadd98e0337847e526146 to your computer and use it in GitHub Desktop.
Basic program for sequential file read from disk, works on C128
1 rem read sequential data from disk with c128
10 dopen#1,"seq test"
20 for i=1 to 150
30 input#1,a$
40 print a$
50 next
60 close 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment