summaryrefslogtreecommitdiff
path: root/test/func2.lm
diff options
context:
space:
mode:
Diffstat (limited to 'test/func2.lm')
-rw-r--r--test/func2.lm9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/func2.lm b/test/func2.lm
new file mode 100644
index 0000000..75de72d
--- /dev/null
+++ b/test/func2.lm
@@ -0,0 +1,9 @@
+##### LM #####
+int f( I: int Str: str )
+{
+ print( I ' ' Str '\n' )
+}
+
+f( 50 'hello world' )
+##### EXP #####
+50 hello world