Appearance
Boa has single-line comments which start with // (like C++'s) and end at the end of the line where they start.
//
// 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.
Comments
Boa has single-line comments which start with
//(like C++'s) and end at the end of the line where they start.INFO
Boa does not have multi-line comments.