home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-06-29 | 483 b | 14 lines |
- // SampleApplication.java LPS 6/15/96
- // 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.
-
- package sample.application;
-
- class SampleApplication {
- public static void main (String args[]) {
- System.out.println("Hello World!");
- }
- }
-