From e0c4495d6bcf1f2005337f4bc4bb62308ad5e096 Mon Sep 17 00:00:00 2001 From: Adeonir Kohl Date: Thu, 4 Oct 2018 22:24:51 -0300 Subject: [PATCH] Create hello.js --- code/hello.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code/hello.js diff --git a/code/hello.js b/code/hello.js new file mode 100644 index 0000000..52bc3e3 --- /dev/null +++ b/code/hello.js @@ -0,0 +1,5 @@ +const hello = name => { + console.log(`Hello, ${name}`) +} + +hello('World!') \ No newline at end of file