Syntax:
Public class Home
{
public static void main(String[] args)
{
System.out.println("hello world");
}
}
1.public in Caps (Public)

2.class starts with caps(Class)

3.file name starts with small letters (home)

10.system.out in small(system)









Top comments (0)