summaryrefslogtreecommitdiff
path: root/tmp/test.fy
diff options
context:
space:
mode:
Diffstat (limited to 'tmp/test.fy')
-rw-r--r--tmp/test.fy8
1 files changed, 3 insertions, 5 deletions
diff --git a/tmp/test.fy b/tmp/test.fy
index 609f0c2..8fe78a1 100644
--- a/tmp/test.fy
+++ b/tmp/test.fy
@@ -1,8 +1,6 @@
#*
- * Examples of how to use references
+ * Examples of how to use arrays
*#
-# Create a variable foo, and bar is a reference to foo
-my foo = "foo";
-my bar = &foo;
-
+my foo = 1, bar = 2;
+my arr = [foo bar];