1 2 3 4 5 6 7
//! `pwd` fallback. use std::env::current_dir; fn main() { println!("{}", current_dir().unwrap().display()); }