RosettaCodeData/Task/Associative-array-Creation/Smalltalk/associative-array-creation.st
2013-04-10 14:58:50 -07:00

3 lines
93 B
Smalltalk

states := Dictionary new.
states at: 'MI' put: 'Michigan'.
states at: 'MN' put: 'Minnesota'.