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