leo/tests/compiler/char/string.leo

11 lines
166 B
Plaintext
Raw Normal View History

2022-06-01 21:16:00 +03:00
/*
namespace: Compile
expectation: Pass
input_file:
- inputs/string.in
*/
function main(hello: string) -> string {
let world: string = "world";
return world;
}