Skip to content

Line Skip

Enrico Agostini edited this page Nov 2, 2023 · 2 revisions

///;[integer] - Since R1

defines the number of lines to skip (lines are always in steps of 10)

Example:

Source

print "a"
///;10
print "b"

Compiled

10 print "a"
110 print "b"

///;[integer] - Since R5 Beta

overrides the default line skip length, in the updated version you can use this command inline

Example:

Source

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 text

Compiled

10 print "a"
110 print "b" 
160 print "c"
180 print "text"   
190 goto 180

Clone this wiki locally