hacktoberfest-2018/code/hello.js
2018-10-04 22:24:51 -03:00

5 lines
74 B
JavaScript

const hello = name => {
console.log(`Hello, ${name}`)
}
hello('World!')