home *** CD-ROM | disk | FTP | other *** search
- // this is the classic "Hello world" program. A version of this is usually
- // offered by any new language proponents to give a small flavor of what
- // it takes to build a minimal application. Java does quit well, you think ?
- // NOTE !!! this class is subclassed off of Object. So you have to have the package
- // java.classes.java.lang selected and the class Object selected. Otherwise all bets are off.
-
- class HelloWorldApp {
- public static void main (String args[]) {
- System.out.println("Hello World!");
- }
- }
-