mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-28 20:54:16 +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: i16, b: i16) -> bool {
|
|
let ret: bool = a == b;
|
|
console.assert(ret);
|
|
return ret;
|
|
}
|