it's puts in node, not print

This commit is contained in:
Jeremy Ashkenas
2010-02-02 10:43:23 -05:00
parent 9648ae2de1
commit df588bc9e8

View File

@@ -41,9 +41,9 @@ obj: {
puts obj?.prop is "hello" puts obj?.prop is "hello"
print obj.prop?.length is 5 puts obj.prop?.length is 5
print obj?.prop?.non?.existent?.property is undefined puts obj?.prop?.non?.existent?.property is undefined
# Soaks and caches method calls as well. # Soaks and caches method calls as well.