leo/tests/compiler/console/log_string.leo

12 lines
192 B
Plaintext
Raw Normal View History

2022-06-01 21:16:00 +03:00
/*
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;
}