mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
13 lines
162 B
Plaintext
13 lines
162 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
function empty() {}
|
|
|
|
function main(y: bool) -> bool {
|
|
empty();
|
|
return y == true;
|
|
}
|