mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
17 lines
253 B
Plaintext
17 lines
253 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/basic.in
|
|
*/
|
|
|
|
type int = u32;
|
|
|
|
function main(x: u32, y: bool) -> bool {
|
|
let a: int = x;
|
|
let b: int = 2;
|
|
let c: int = a + b;
|
|
|
|
return a == 1u32 && b == 2u32
|
|
&& c == 3u32 && y;
|
|
} |