RosettaCodeData/Task/Associative-array-Creation/Smalltalk/associative-array-creation-1.st
2023-07-01 13:44:08 -04:00

3 lines
93 B
Smalltalk

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