mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
25 lines
No EOL
282 B
CoffeeScript
25 lines
No EOL
282 B
CoffeeScript
area: (x, y, x1, y1) ->
|
|
(x - x1) * (x - y1)
|
|
|
|
x: y: 10
|
|
x1: y1: 20
|
|
|
|
ok area(x, y, x1, y1) is 100
|
|
|
|
ok(area(x, y,
|
|
x1, y1) is 100)
|
|
|
|
ok(area(
|
|
x
|
|
y
|
|
x1
|
|
y1
|
|
) is 100)
|
|
|
|
|
|
sum_of_args: ->
|
|
sum: 0
|
|
sum: + val for val in arguments
|
|
sum
|
|
|
|
ok sum_of_args(1, 2, 3, 4, 5) is 15 |