Macro refer

Source
macro_rules! refer {
    ($name:ident) => { ... };
}
Expand description

macro to reference variables from anywhere.

{
  let x = def!(cant_touch_this = 0u128);
}
let it_exists: u128 = refer!(cant_touch_this);
assert_eq!(it_exists, 0); // yes i can!