summaryrefslogtreecommitdiffstats
path: root/test/times2.t
diff options
context:
space:
mode:
authorBenedikt Böhm <bb@xnull.de>2009-07-07 10:43:01 +0200
committerBenedikt Böhm <bb@xnull.de>2009-07-07 10:43:01 +0200
commit8582e3520ff487ea71e68a10fa8641fd95e74706 (patch)
tree6e8a84141d45b6bd4f1bfa494b1dbe7270627754 /test/times2.t
parent4ad083bf274a972ed7286b9b52179e30873aa830 (diff)
downloadswppy-8582e3520ff487ea71e68a10fa8641fd95e74706.tar.gz
swppy-8582e3520ff487ea71e68a10fa8641fd95e74706.tar.xz
swppy-8582e3520ff487ea71e68a10fa8641fd95e74706.zip
cleanup test code
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