home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-05 | 501 b | 19 lines |
- //
- // HELLO.JAVA
- //
- // Hello world sample with packages.
- //
- // Copyright (c) 1997-98, Microsoft Corporation. All rights reserved.
- //
-
- package Test;
-
- class Hello {
- public static void main( String Args[] ) {
- System.out.println( "" );
- System.out.println( "Hello World!" );
- System.out.println( "You are running from the Test package!" );
- System.out.println( " Version 4,79,2259,2252" );
- }
- }
-