J++ Lessons - How to get started
| //program hello.java by you import java.io.*; public class hello //hello represents the fileName { public static void main(String[] args) { System.out.println("Starting Java ..."); System.out.println("Hello World!"); } } |