5 lines
88 B
Plaintext
5 lines
88 B
Plaintext
fn main() -> u32 {
|
|
let a: u32 = 0u32 + 3u32;
|
|
let b = &a;
|
|
return *b * 2u32;
|
|
} |