5 lines
70 B
Ruby
5 lines
70 B
Ruby
|
|
hash={}
|
||
|
|
hash[666]='devil'
|
||
|
|
hash[777] # => nil
|
||
|
|
hash[666] # => 'devil'
|