16 lines
265 B
Text
16 lines
265 B
Text
/* NetRexx */
|
|
options replace format comments java crossref symbols nobinary
|
|
|
|
myVals = [ 'zero', 'one', 'two', 'three', 'four', 'five' ]
|
|
mySet = Set
|
|
mySet = HashSet()
|
|
|
|
loop val over myVals
|
|
mySet.add(val)
|
|
end val
|
|
|
|
loop val over mySet
|
|
say val
|
|
end val
|
|
|
|
return
|