home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sams Teach Yourself C in 21 Days (6th Edition)
/
STYC216E.ISO
/
mac
/
Examples
/
Day25
/
x.java
< prev
Wrap
Text File
|
2002-05-25
|
186b
|
10 lines
import java.lang.System;
public class InputOutputTest {
public static void main(String args[]) throws IOException
{
System.out.println("Hello World!");
}
}