mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-18 19:34:27 -05:00
18 lines
188 B
CoffeeScript
18 lines
188 B
CoffeeScript
area: x, y, x1, y1 =>
|
|
(x - x1) * (x - y1)
|
|
|
|
x: y: 10
|
|
x1: y1: 20
|
|
|
|
print(area(x, y, x1, y1) is 100 )
|
|
|
|
print(area(x, y,
|
|
x1, y1) is 100)
|
|
|
|
print(area(
|
|
x
|
|
y
|
|
x1
|
|
y1
|
|
) is 100)
|