mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-26 03:33:44 +03:00
16 lines
206 B
Plaintext
16 lines
206 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: input/integers.in
|
|
*/
|
|
|
|
|
|
function main(a: u32) -> u32 {
|
|
console.log("{}", 1u8);
|
|
return 10u32;
|
|
}
|
|
|
|
function main() {
|
|
console.log("{}", 2u8);
|
|
}
|