macro_rules! print_var { ($var: expr) => { ... }; }
Logs a variable and its value unconditionally
let five = 5; print_var!(five);