Files
hello-world/java.java
Pratik K. Patel 31f1c2305e Fixed class name to comply to Sun's coding conventions
Made java class name comply with regular java coding conventions and to the ones the Sun recommends you to use.

http://java.sun.com/docs/codeconv/html/CodeConventions.doc8.html
2008-07-24 20:43:19 -05:00

8 lines
104 B
Java

class HelloClass
{
public static void main(String args[])
{
System.out.println("Hello World");
}
}