I\'m learning Rust, and so far, there appears to be 3 ways to declare variables:
const A:u8 = 42; static A:u8 = 42; let A:u8 = 42;
I get that