Tell me what you want, What you really, really want.

Moderator: Mmiscool

User avatar
By Luc Volders
#55437 Haven't found it and that may be my mistake but:

Is there a rem (remark) like command that let you comment out program lines.

something like // in C++
or commenting out a block of code with /* and */

Very usefull for debugging but I have not fou8nd it in the documentation.

Luc
User avatar
By PhilTilson
#55449 You're right - it's not documented!

However, a single tick mark seems to work fine as a comment:
Code: Select alla$ = "A test string"

'This is a comment line

b$ = a$ & " is useful!"

'...and this is another comment.

print b$

I'll update the documentation accordingly!

Phil