mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 11:45:00 +03:00
13 lines
189 B
Plaintext
13 lines
189 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/eq.in
|
|
*/
|
|
|
|
@program
|
|
function main(a: u64, b: u64) -> bool {
|
|
let ret: bool = a == b;
|
|
console.assert(ret);
|
|
return ret;
|
|
}
|