Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Current working directory

use std::env::current_dir;

fn main() {
    let folder = current_dir().unwrap();
    println!("{:?}", folder);
    println!("{}", folder.display());
}