Skip to content

Printing

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

NOTE: all lines have to end with semicolons.

Printing variables

example: print(a);

Printing Nums

example: print(7.2);

Printing Strings

example: print(:Hello, World!:);

NOTE: \n or other newline ways do not work but print(); does do a newline

Clone this wiki locally