home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-07-30 | 442 b | 16 lines |
- // Copyright(c) 1996,1997 ObjectSpace, Inc.
- import COM.objectspace.jgl.*;
-
- public class Overview1
- {
- public static void main( String[] args )
- {
- HashMap chemicals = new HashMap();
- chemicals.put( "Ca", "Calcium" );
- chemicals.put( "Au", "Gold" );
- chemicals.put( "He", "Helium" );
- System.out.println( "chemicals = " + chemicals );
- System.out.println( "Au means " + chemicals.get( "Au" ) );
- }
- }
-