mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 13:42:24 +03:00
12 lines
192 B
Plaintext
12 lines
192 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Fail
|
|
input_file: inputs/dummy.in
|
|
*/
|
|
|
|
function main(y: bool) -> bool {
|
|
let hello: string = "hello world";
|
|
console.log(hello);
|
|
return y == true;
|
|
}
|