mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
8 lines
109 B
Plaintext
8 lines
109 B
Plaintext
function main() {
|
|
let mut x = 4u32;
|
|
for i in 0..3 {
|
|
x -= 1;
|
|
}
|
|
|
|
assert_eq!(x, 1u32);
|
|
} |