diff code/test.lm @ 1:68d1447bfdbe

Support for compiling lists, tuples and integer literals in lmc. Added small test lm program for exercising compiler.
author Michael Pavone <pavone@retrodev.com>
date Fri, 25 Jul 2014 09:13:09 -0700
parents
children 71e8d638da5c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/code/test.lm	Fri Jul 25 09:13:09 2014 -0700
@@ -0,0 +1,9 @@
+#{
+	init <- {
+		#[1 2 3 4]
+	}
+	
+	main <- {
+		[1 2 3 4]
+	}
+}