Files
hakorune/apps/tests/ny-echo-lite/main.hako

17 lines
335 B
Plaintext

// ny-echo-lite - minimal echo for LLVM/AOT smoke
// Reads one line from stdin and prints it back. EOF -> exit(0)
static box Main {
init { console }
main() {
me.console = new ConsoleBox()
local line = me.console.readLine()
if line != null {
print(line)
}
return 0
}
}