Skip to content

Comments

Christopher Aliprantis edited this page Apr 1, 2026 · 3 revisions

NOTE: every line has to end with semicolon

Comments

start with // and with ; or nothing because then the interpreter wont include the line if it is nothing

must be per line you can't have "print(:invalid code:) //dasdd;"

Multi-Line Comment Example

//print(var) print(2);

NOTE: the multi-line comment is code because multi-line comments are commonly use to comment out blocks of code

Clone this wiki locally