Comments

Line comments begin with // and extend to the end of the line.

line_comment = "//" { any_char_except_newline } newline ;

Comments are discarded during lexical analysis and do not affect program semantics.

// This is a comment
fn main() -> i32 {
    42  // This is also a comment
}

Block comments (/* ... */) are not currently supported.