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

6 lines
137 B
Text
Raw Permalink Normal View History

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