diff --git a/aarya.js b/aarya.js new file mode 100644 index 0000000..a7fb1d8 --- /dev/null +++ b/aarya.js @@ -0,0 +1,14 @@ +// Hi This is the main file +function helloWorld() { + console.log("Hello World"); + } + + helloWorld(); + + function printName(name) { + console.log("Hello " + name); + } + + printName("John Doe"); + + printName("Aarya Tambde"); \ No newline at end of file