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