leo/tests/compiler/input/main.leo
2022-10-05 16:53:49 -07:00

12 lines
168 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/main.in
*/
program test.aleo {
transition main(a: bool) -> bool {
return a == true;
}
}