about summary refs log tree commit diff
path: root/examples/cat.ccl
blob: 2f4028f67ed5967618744030bc81adf99170844f (plain)
1
2
3
4
5
6
7
^=c / create variable for storing input
^- / push -1 (EOF) on the stack
_ (
    >c   / input
    c?#; / if c is -1 then exit
    <c   / output
)