/* 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