Corrected identifiers. Corrected lambda example.

This commit is contained in:
Jonathan Turner
2009-06-11 02:17:31 +00:00
parent d0ff0dc0f1
commit c20502cc81
2 changed files with 3 additions and 4 deletions

View File

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