Rust - Standard Library - Environmental Variables


use std::env;

fn debug() {
    let DEBUG = env::var("DEBUG").is_err();
}