RosettaCodeData/Task/Copy-stdin-to-stdout/Phix/copy-stdin-to-stdout.phix
2026-02-01 16:33:20 -08:00

6 lines
109 B
Text

without js
while true do
integer ch = wait_key()
if ch=#1B then exit end if
puts(1,ch)
end while