1 USING: io io.pipes io.streams.string io.encodings.utf8
2 io.streams.duplex io.encodings io.timeouts namespaces
3 continuations tools.test kernel calendar destructors
4 accessors debugger math ;
14 [ { } ] [ { } run-pipeline ] unit-test
15 [ { f } ] [ { [ f ] } run-pipeline ] unit-test
18 { [ input-stream [ utf8 <decoder> ] change readln ] } run-pipeline
24 [ output-stream [ utf8 <encoder> ] change "Hello" print flush f ]
25 [ input-stream [ utf8 <decoder> ] change readln ]
31 5 seconds over set-timeout
40 [ out>> "hi" over stream-write dispose ]