fork download
  1. //Comments in Rust!
  2.  
  3. fn main()
  4. {
  5. /*
  6.   Hola!
  7.   I am a multi-line comment.
  8.   Just like in C.
  9.   */
  10. println!("You should comment your code.\n");
  11. }
Success #stdin #stdout 0s 10952KB
stdin
Standard input is empty
stdout
You should comment your code.