mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 13:42:24 +03:00
16 lines
228 B
Plaintext
16 lines
228 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: inputs/dummy.in
|
|
*/
|
|
|
|
function main(y: bool) -> bool {
|
|
console.log("{}", 1u8);
|
|
return y;
|
|
}
|
|
|
|
function main(y: bool) -> bool {
|
|
console.log("{}", 2u8);
|
|
return y;
|
|
}
|