mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-12-11 00:21:24 +01:00
6 lines
85 B
JavaScript
6 lines
85 B
JavaScript
function solution (arg) {
|
|
return 'Hello ' + arg + '!'
|
|
}
|
|
|
|
module.exports = solution
|