10 lines
192 B
Rust
10 lines
192 B
Rust
|
use std::panic::{catch_unwind, AssertUnwindSafe};
|
||
|
|
||
|
fn main() {
|
||
|
let mut i = 3;
|
||
|
let _ = catch_unwind(AssertUnwindSafe(|| {i -= 2;} ));
|
||
|
for _ in 0..i {
|
||
|
println!("I");
|
||
|
}
|
||
|
}
|