RosettaCodeData/Task/Program-termination/Rust/program-termination-1.rust

6 lines
110 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
fn main() {
println!("The program is running");
return;
println!("This line won't be printed");
}