mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +03:00
13 lines
188 B
Plaintext
13 lines
188 B
Plaintext
function main(a: u32, b: u32) {
|
|
let mut c = 0u32;
|
|
|
|
if a == 1 {
|
|
c = 1;
|
|
} else if a == 2 {
|
|
c = 2;
|
|
} else {
|
|
c = 3;
|
|
}
|
|
|
|
console.assert(c == b);
|
|
} |