Files
Java-Projects/HelloWorld.java
2021-04-14 16:00:09 +05:30

10 lines
302 B
Java

// 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!");
}
}