macro_rules! read_env { ($var:ident) => { ... }; }
Reads an environment variable, and goes into panic if it is not found.
fn main() { println!("MAX_DUCK_SIZE is `{}`", read_env!(MAX_DUCK_SIZE)); }