mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
8 lines
109 B
CoffeeScript
8 lines
109 B
CoffeeScript
x: 1
|
|
y: {}
|
|
y.x: => 3
|
|
|
|
print(x is 1)
|
|
print(typeof(y.x) is 'function')
|
|
print(y.x() is 3)
|
|
print(y.x.name is 'x') |