leo/tests/compiler/import_old/string_import.leo
2021-08-04 23:34:11 +03:00

12 lines
238 B
Plaintext

// namespace: Compile
// expectation: Pass
// input_file: input/dummy.in
// cwd: imports
import lib.ello;
function main(y: bool) -> bool {
let ello_str = ello();
console.log("{}", ello_str);
return ello_str == "ello" && y;
}