mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
13 lines
200 B
Plaintext
13 lines
200 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/dummy.in
|
|
*/
|
|
|
|
function main(a: bool) -> bool {
|
|
let x: u8 = 2u8;
|
|
let y: u8 = x;
|
|
let z: u8 = y / 2u8;
|
|
return (z == 1u8) == a;
|
|
}
|