comments.md

June 6, 2026 ยท View on GitHub

Documentation

Comments

Comments are human-readable notes present in the source-code. They will be ignored by the compiler. The // symbol signals the start of a comment. A comment can make use of an entire line:

// This is a comment

or can be placed after a statement:

print "Hello world!" // This is another comment