summaryrefslogtreecommitdiff
path: root/examples/io.fy
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2009-10-30 14:54:34 +0000
committerPaul Buetow <paul@buetow.org>2009-10-30 14:54:34 +0000
commit1542ff3a3927916c23dabffff9533b58f63f4b54 (patch)
tree4a34357fc9723d4f65daa3b5a5de4099bcfd7424 /examples/io.fy
parent9eb12638e152d981492382cb534edb89a8625990 (diff)
parent1bc73e78278b630768723869d277d05404feae03 (diff)
Diffstat (limited to 'examples/io.fy')
-rw-r--r--examples/io.fy13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/io.fy b/examples/io.fy
new file mode 100644
index 0000000..fda514d
--- /dev/null
+++ b/examples/io.fy
@@ -0,0 +1,13 @@
+#*
+ * 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;
+