全局变量, 要用 static 修饰, 有两个特点:
static
unsafe {}
#![allow(unused)] fn main() { static mut STASH: &i32 = &10; static WORTH_POINTING_AT: i32 = 42; }