home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of Windows 95.com 1996 September
/
WIN95_09961.iso
/
java
/
grindist.exe
/
DATA.Z
/
SampleApplication.java
< prev
next >
Wrap
Text File
|
1996-06-29
|
483b
|
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!");
}
}