pub fn is_wsl() -> bool
2fn main() { 3 if is_wsl::is_wsl() { 4 println!("Currently in WSL") 5 } else { 6 println!("Currently NOT in WSL") 7 } 8}