Remark
Remark>Some Comment
The remark statement is ignored by the interpreter. It exists simply to allow comments to be placed in the code. You can also use // E.g.:
// This is a comment
Comments must be on a line of their own.
Several lines of code can also be commented out in one go by using /* before and */ after the lines to be commented. E.g.:
/*
Let>r=5
Repeat>r
DDERequest>Excel,efile.xls,R%r%C2,Name,60
Let>r=r+1
Until>r=5
*/
You can also use /* ... */ at the end of lines of real code