blob: 30a6f4bc847f64189ab3f334a7aa0e0a7a5700b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
module Echo
import StdEnv
Start :: *World -> *World
Start world
# (console, world) = stdio world
# (line, console) = freadline console
| not (fend console) = fwrites line
| otherwise = world
|