fork download
  1. fn main() {
  2. // The statements here will be executed when the compiled binary is called
  3.  
  4. let lit =
  5. "A -> B
  6. C -> D
  7. E -> F";
  8.  
  9. // Print text to the console
  10. println!("{}", lit);
  11. }
Success #stdin #stdout 0s 11000KB
stdin
Standard input is empty
stdout
A -> B
C -> D
E -> F