leo/tests/compiler/console/log_string.leo
2022-06-01 11:16:00 -07:00

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;
}