mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-02 23:07:27 +03:00
11 lines
166 B
Plaintext
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;
|
|
} |