1 #![deny(warnings)]
2 
3 use std::env::current_dir;
4 
main()5 fn main() {
6     println!("{}", current_dir().unwrap().to_string_lossy());
7 }
8