exercism/ecmascript/hello-world/hello-world.js
2016-08-13 18:20:14 -05:00

16 lines
261 B
JavaScript

//
// This is only a SKELETON file for the 'Hello World' exercise. It's been provided as a
// convenience to get you started writing code faster.
//
class HelloWorld {
hello(name) {
//
// YOUR CODE GOES HERE
//
}
}
export default HelloWorld;