Comments
Single-Line Comments
// if a < b {
// TODO
// }
Block Comments
Block comments can be nested, as in Swift and Rust (unlike C++).
/* This
/* (and this) */
(and still this)
is a comment */
// if a < b {
// TODO
// }
Block comments can be nested, as in Swift and Rust (unlike C++).
/* This
/* (and this) */
(and still this)
is a comment */