2024-04-01 12:43:26 +09:00

16 lines
283 B
Rust

// functions3.rs
//
// Execute `rustlings hint functions3` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() -> Result<(), Box<dyn Error>> {
let age = 15;
while true {
if age == 15 {
std::process::exit(1);
}
}
}