summaryrefslogtreecommitdiffstats
path: root/test/times2.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/times2.t')
-rw-r--r--test/times2.t7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/times2.t b/test/times2.t
new file mode 100644
index 0000000..723bea6
--- /dev/null
+++ b/test/times2.t
@@ -0,0 +1,7 @@
+fun times2[n]
+ @n*2
+end
+
+fun main[n]
+ @call times2[n]
+end