10 lines
302 B
Java
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!");
|
|
}
|
|
}
|