1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

remove parens

This commit is contained in:
Jeremy Ashkenas 2010-02-02 20:44:10 -05:00
parent df670d47d2
commit 1587901367

View file

@ -42,7 +42,7 @@ bob: {
greet: (salutation) ->
salutation + " " + @name
hello: ->
@greet("Hello")
@greet "Hello"
}
puts bob.hello() is "Hello Bob"