Create hello.js

This commit is contained in:
Adeonir Kohl 2018-10-04 22:24:51 -03:00
parent 942c3946f0
commit e0c4495d6b
1 changed files with 5 additions and 0 deletions

5
code/hello.js Normal file
View File

@ -0,0 +1,5 @@
const hello = name => {
console.log(`Hello, ${name}`)
}
hello('World!')