exercism/coffeescript/example/example.coffee

6 lines
72 B
CoffeeScript
Raw Normal View History

2016-08-23 17:33:06 +00:00
class Example
add: (x, y) -> x + y
module.exports = Example