Files
odin-javascript-exercises/helloWorld/helloWorld.js
T

6 lines
86 B
JavaScript
Raw Normal View History

2017-08-17 13:47:39 -05:00
var helloWorld = function() {
2017-11-20 13:51:01 -06:00
return 'Hello, World!'
2017-08-17 13:47:39 -05:00
}
2017-11-20 13:51:01 -06:00
module.exports = helloWorld