the REM command when placed at the biggining of any line tells
dark basic to skip that line.For example:
print "statement"
rem print "does not matter"
But what the REM command is useful for is to tell you stuff you
will probaly forget or to tell others what they might not understand.
rem This prints bob if leftkey is pressed
sync on
Do
cls
if leftkey()=1
print "BoB"
endif
sync
Loop
Now REMSTART's and REMEND's are used to skip many lines of code so
you can put longer notes without putting rem on every line.
So this:
rem Long long ago in a
rem galaxy far far away
rem thier was a jedi
rem and .....
Turns into this:
remstart
Long long ago in a
galaxy far far away
thier was a jedi
and .....
remend
Hope that helps
If at first you don't succeed-Pause-Go to last checkpoint