Files
programming-challenges/challenges/hello-world/solutions/javascript-hello/solution.js
T
2020-07-05 15:48:51 +02:00

6 lines
85 B
JavaScript

function solution (arg) {
return 'Hello ' + arg + '!'
}
module.exports = solution