mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-28 20:54:16 +03:00
11 lines
167 B
Plaintext
11 lines
167 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: inputs/true.in
|
|
*/
|
|
|
|
@program
|
|
function main(a: bool) -> bool {
|
|
console.assert(a == true);
|
|
return a == true;
|
|
} |