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