have a hash with a default value  

Revisiting codecademy Ruby… it says:

If you have a hash with a default value, and you try to access a non-existent key, you get that default value.

irb(main):001:0> a = Hash.new
=> {}
irb(main):002:0> b = Hash.new(0)
=> {}
irb(main):003:0> a["john"]
=> nil
irb(main):004:0> b["john"]
=> 0
irb(main):005:0> a == b
=> true

This is great…

 
0
Kudos
 
0
Kudos

Now read this

How do you install ruby before 1.9.3?

How do you install ruby before 1.9.3? rbenv install --list rbenv install 1.9.2-p180 old version error. Need apple-gcc42, $ ls -l /usr/bin | grep gcc -rwxr-xr-x 1 root wheel 14224 Apr 8 14:45 gcc lrwxr-xr-x 1 root wheel 5 Apr 8 14:45... Continue →