RosettaCodeData/Task/Associative-array-Creation/Ruby/associative-array-creation-5.rb

5 lines
74 B
Ruby
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
hash = {}
hash[666] = 'devil'
hash[777] # => nil
hash[666] # => 'devil'