Comments in Rust

For [[single line comment]]s we can use:

// This is a single line comment

For [[multiline comment]]s

/*
    This
    Is a
    Multiline
    Comment
*/
fn main() {
    // a single line comment
    /*
    Multiline
    Comment
    */
}