mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 16:41:42 +03:00
12 lines
173 B
Plaintext
12 lines
173 B
Plaintext
|
function main(a: bool, b: bool, c: u32) {
|
||
|
let mut d = 0u32;
|
||
|
|
||
|
if a {
|
||
|
d += 1;
|
||
|
if b {
|
||
|
d += 2;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
console.assert(d == c);
|
||
|
}
|