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