mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-15 08:23:26 +00:00
10 lines
160 B
Rust
10 lines
160 B
Rust
![]() |
// compile-flags: --edition=2021
|
||
|
|
||
|
fn main() {
|
||
|
let cond = std::env::args().len() == 1;
|
||
|
if cond {
|
||
|
println!("true");
|
||
|
}
|
||
|
println!("done");
|
||
|
}
|