RosettaCodeData/Task/Associative-array-Creation/Ruby/associative-array-creation-1.rb
2013-04-10 14:58:50 -07:00

4 lines
70 B
Ruby

hash={}
hash[666]='devil'
hash[777] # => nil
hash[666] # => 'devil'