//
Marks the beginning of a comment.
Syntax
code // comment
Comments
The rest of the line following the "//" is ignored by the interpreter.
Example
set a = sum(b, b) // a is now equal to twice b
Marks the beginning of a comment.
code // comment
The rest of the line following the "//" is ignored by the interpreter.
set a = sum(b, b) // a is now equal to twice b