summaryrefslogtreecommitdiff
path: root/test.icl
diff options
context:
space:
mode:
Diffstat (limited to 'test.icl')
-rw-r--r--test.icl8
1 files changed, 8 insertions, 0 deletions
diff --git a/test.icl b/test.icl
new file mode 100644
index 0000000..92f7a54
--- /dev/null
+++ b/test.icl
@@ -0,0 +1,8 @@
+module test
+
+(+) infixl 6 :: !Int !Int -> Int
+(+) a b = code inline {
+ addI
+}
+
+Start = 10 + 20