mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 08:01:42 +03:00
20 lines
286 B
Plaintext
20 lines
286 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/u32_3.in
|
|
*/
|
|
|
|
function main(x: u32) -> bool {
|
|
let b: u32 = 0u32;
|
|
|
|
if x == 3u32 {
|
|
for i: u32 in 0u32..4u32 {
|
|
b = b + i;
|
|
}
|
|
}
|
|
|
|
let r: u32 = x == 3u32 ? 6u32 : 0u32;
|
|
|
|
return r == b;
|
|
}
|