6 lines
72 B
CoffeeScript
6 lines
72 B
CoffeeScript
|
class Example
|
||
|
add: (x, y) -> x + y
|
||
|
|
||
|
module.exports = Example
|
||
|
|