13 lines
200 B
Rust
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());
|
|
} |