odin-javascript-exercises/helloWorld/helloWorld.js
2017-11-20 13:51:01 -06:00

5 lines
86 B
JavaScript

var helloWorld = function() {
return 'Hello, World!'
}
module.exports = helloWorld