Skip to content

Comments

Boa has single-line comments which start with // (like C++'s) and end at the end of the line where they start.

boa
// This is a comment
println("This is not a comment") // But this part of the line is a comment
// This is another comment

INFO

Boa does not have multi-line comments.