// rust programming language if cfg!(windows) { println!("this is windows"); } else if cfg!(unix) { println!("this is unix alike"); } //you can also use #[cfg(target_os="my_os")] or just #[cfg(my_os)]