RosettaCodeData/Task/Remove-duplicate-elements/Smalltalk/remove-duplicate-elements-1.st
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

4 lines
116 B
Smalltalk

"Example of creating a collection"
|a|
a := #( 1 1 2 'hello' 'world' #symbol #another 2 'hello' #symbol ).
a asSet.