-
Notifications
You must be signed in to change notification settings - Fork 0
Line Skip
Enrico Agostini edited this page Nov 2, 2023
·
2 revisions
defines the number of lines to skip (lines are always in steps of 10)
print "a"
///;10
print "b"10 print "a"
110 print "b"overrides the default line skip length, in the updated version you can use this command inline
print "a"
print "b" ///;100
///;50
print "c"
rem you can use it both ways, if it looks more useful, and also
rem you can combine it with other things such as goto pointers and rems
print "text" ///.text ///;20 rem test rem
goto text10 print "a"
110 print "b"
160 print "c"
180 print "text"
190 goto 180