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