summaryrefslogtreecommitdiff
path: root/examples/io.fy
diff options
context:
space:
mode:
Diffstat (limited to 'examples/io.fy')
-rw-r--r--examples/io.fy13
1 files changed, 0 insertions, 13 deletions
diff --git a/examples/io.fy b/examples/io.fy
deleted file mode 100644
index fda514d..0000000
--- a/examples/io.fy
+++ /dev/null
@@ -1,13 +0,0 @@
-#*
- * Simple I/O examples. Currently only output is supported.
- *#
-
-# Print out 10 followed by a newline
-say 10;
-
-# Print out 20 without a newline followed
-put 20;
-
-# Print out a newline
-ln;
-