leo/tests/compiler/char/string.leo
2022-06-01 11:16:00 -07:00

11 lines
166 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file:
- inputs/string.in
*/
function main(hello: string) -> string {
let world: string = "world";
return world;
}