mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 07:32:26 +03:00
20 lines
267 B
Plaintext
20 lines
267 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/dummy.in
|
|
*/
|
|
|
|
function one() -> u32 {
|
|
return 1u32;
|
|
}
|
|
|
|
function main(y: bool) -> bool {
|
|
let a: u32 = 0u32;
|
|
|
|
for i: u32 in 0u32..10u32 {
|
|
a = a + one();
|
|
}
|
|
|
|
return (a == 10u32) == y;
|
|
}
|