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