node conversion finished, narwhal removed.

This commit is contained in:
Jeremy Ashkenas
2010-01-29 23:30:54 -05:00
parent e08e99a403
commit f5a37035cf
48 changed files with 208 additions and 357 deletions

View File

@@ -14,7 +14,7 @@ result: switch num
when 11 then false
else false
print result
puts result
func: (num) ->
switch num
@@ -24,7 +24,7 @@ func: (num) ->
false
else false
print func(2)
print func(6)
print !func(3)
print !func(8)
puts func(2)
puts func(6)
puts !func(3)
puts !func(8)