odin-javascript-exercises/helloWorld/helloWorld.js

6 lines
75 B
JavaScript
Raw Normal View History

const helloWorld = function() {
return ''
2017-08-17 11:47:39 -07:00
}
2018-06-08 17:44:45 -07:00
module.exports = helloWorld