mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-27 12:17:35 +03:00
14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/scalars.in
|
|
*/
|
|
|
|
function main(a: scalar, b: scalar) -> bool {
|
|
let c: bool = a > b;
|
|
let d: bool = a < b;
|
|
let e: bool = a >= b;
|
|
let f: bool = a <= b;
|
|
return f;
|
|
} |