comments in rust code example
Example: rust comment
fn main() {
// It's a simple comment
println!("Hello, world!");
println!("Condemned Crab comment"); // Comments in rust are with two slashes.
}
fn main() {
// It's a simple comment
println!("Hello, world!");
println!("Condemned Crab comment"); // Comments in rust are with two slashes.
}