6 lines
77 B
Rust
6 lines
77 B
Rust
use std::process::ExitCode;
|
|
|
|
fn main() -> ExitCode {
|
|
ExitCode::from(0)
|
|
}
|