diff --git a/file02.js b/file02.js index 00e118d..16439ca 100644 --- a/file02.js +++ b/file02.js @@ -1,3 +1,10 @@ console.log("Hey! We'r learning git") console.log('Use "git status" to check status') -console.log('Use "git log" to see history') \ No newline at end of file +console.log('Use "git log" to see history') + +function newfun(name) +{ + console.log('Another function to print the name ' + name) +} + +newfun('Manav') \ No newline at end of file