about summary refs log tree commit diff
path: root/examples/cat.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/cat.ccl')
-rw-r--r--examples/cat.ccl7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/cat.ccl b/examples/cat.ccl
new file mode 100644
index 0000000..2f4028f
--- /dev/null
+++ b/examples/cat.ccl
@@ -0,0 +1,7 @@
+^=c / create variable for storing input
+^- / push -1 (EOF) on the stack
+_ (
+    >c   / input
+    c?#; / if c is -1 then exit
+    <c   / output
+)