Answers for "rust comment"

2

rust comment

fn main() {
	// It's a simple comment
    println!("Hello, world!");
    
    println!("Condemned Crab comment"); // Comments in rust are with two slashes.
}
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language