changeset 12:7d8b8f82cbef

Help Bill work around some compiler bugs
author Mike Pavone <pavone@retrodev.com>
date Fri, 09 Aug 2013 02:35:37 -0700
parents 8e1d9b0aca1f
children 6de264ba8eb3
files src/requsets.tp
diffstat 1 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/src/requsets.tp	Fri Aug 09 02:14:57 2013 -0700
+++ b/src/requsets.tp	Fri Aug 09 02:35:37 2013 -0700
@@ -1,15 +1,15 @@
 #{
+	eval <- :args {
+		#{
+			id <- "a"
+			arguments <- args
+			string <- {
+				id . "derp"
+			}
+		}
+	}
 
-eval <- #{
-	id <- "a"
-	arguments <- #[]
-	toString <- {
-		id . "derp"
-    }
+	main <- {
+		print: (eval string)
+	}
 }
-
-main <- {
-	print: eval toString:
-}
-
-}