mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-01 08:19:32 +03:00
14 lines
230 B
Plaintext
14 lines
230 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/eq.in
|
|
*/
|
|
|
|
program test.aleo {
|
|
transition main(a: i128, b: i128) -> bool {
|
|
let ret: bool = a == b;
|
|
console.assert(ret);
|
|
return ret;
|
|
}
|
|
}
|