Learn to Program with Java version 11 - Part 02 : Write your first JAVA program #getajobinit

4 years ago

Learn to Program with Java version 11 - Part 02 : Write your first JAVA program
https://github.com/garymcneelyit/javacourse
Example
https://www.geeksforgeeks.org/beginning-java-programming-with-hello-world-example/

/* This is a simple Java program.
FileName : "HelloWorld.java". */
class HelloWorld
{
// Your program begins with a call to main().
// Prints "Hello, World" to the terminal window.
public static void main(String args[])
{
System.out.println("Hello, World");
}
}

Loading comments...