first commit

This commit is contained in:
2021-04-14 16:00:09 +05:30
commit 430dfcee8b
16 changed files with 574 additions and 0 deletions

9
HelloWorld.java Normal file
View File

@@ -0,0 +1,9 @@
// First program of any coding language is this only to print out on the screen "Hello World".
// So each step by step we will be moving on to the next level of coding in Java.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}