6 lines
90 B
Rust
6 lines
90 B
Rust
|
|
fn main() {
|
||
|
|
if problem {
|
||
|
|
std::process::exit(1); // 1 is the exit code
|
||
|
|
}
|
||
|
|
}
|