# SIGSEGVs MRI
# Crashes JRuby (actually, crashes JVM!)
# Locks up linux box when executed with Rubinius

syms = []
('aaaaa'..'zzzza').each do |name|
  syms << name.to_sym
end

p "Total number: #{syms.length}"
p syms.uniq!
p "Without duplicates: #{syms.length}"