require 'set'intSet = Set.new [1, 2, 3]strSet = ["one", "two", "three"].to_setputs "intSet is #{intSet}"puts "strSet is #{strSet}"