home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
inprise
/
JSAMPLES.Z
/
Overview1.java
< prev
next >
Wrap
Text File
|
1998-05-08
|
442b
|
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" ) );
}
}