Added lambdas. Rolled back print bootstrapping for test. Need to figure out right story for polymorphic print at some point.

This commit is contained in:
Jonathan Turner
2009-06-11 02:16:03 +00:00
parent 72dc27f2da
commit d0ff0dc0f1
5 changed files with 58 additions and 12 deletions

3
samples/lambda.wes Normal file
View File

@@ -0,0 +1,3 @@
var add_them = function(x, y) { x + y }
//print(add_them(3, 4))
print(7)