Sunday, May 23, 2021

Simple Java Program

This is a simple java program. Java is Object Oriented programming language.

In java everything revolves around classes. Here is simple class named Sample with a main method. If you are new to programming or you don't know about main method. It's an entrypoint to your code.


public class Sample {
    public static void main(String args[])
    {
        System.out.println("Simple output string");
    }
}

This program's output will be

Simple output string

No comments:

Post a Comment