changeset 11:8e1d9b0aca1f

merge
author William Morgan <bill@mrgn.org>
date Fri, 09 Aug 2013 02:14:57 -0700
parents 79c1db5e7ebd (diff) 0ccebdbc3e80 (current diff)
children 7d8b8f82cbef
files
diffstat 1 files changed, 15 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/requsets.tp	Fri Aug 09 02:14:57 2013 -0700
@@ -0,0 +1,15 @@
+#{
+
+eval <- #{
+	id <- "a"
+	arguments <- #[]
+	toString <- {
+		id . "derp"
+    }
+}
+
+main <- {
+	print: eval toString:
+}
+
+}