exercism/coffeescript/example/example.coffee

6 lines
72 B
CoffeeScript

class Example
add: (x, y) -> x + y
module.exports = Example