odin-javascript-exercises/helloWorld/helloWorld.js
2021-05-08 11:31:02 -07:00

5 lines
86 B
JavaScript

const helloWorld = function() {
return 'Yello Wold!'
}
module.exports = helloWorld