Contact: aviboots(AT)netvision.net.il
41,379 questions
53,922 answers
573 users
static STR: &str = "Rust"; fn main() { println!("{}", STR); } /* run: Rust */
static mut COUNTER: u32 = 0; fn main() { unsafe { COUNTER += 1; // For mutable println!("{}", COUNTER); } } /* run: 1 */