Files
simple-rust-tests/__std/misc/src/bin/conditional_test.rs
2024-01-07 23:51:29 +08:00

13 lines
200 B
Rust

#[cfg(target_os = "macos")]
fn get_os() -> &'static str {
"macos"
}
#[cfg(not(target_os = "macos"))]
fn get_os() -> &'static str {
"unknown"
}
fn main() {
println!("OS: {}", get_os());
}