Considering the following code:
hash = {"a"=>["B", "C"], "b"=>["C"], "c"=>["D", "E"], "d"=>["F"]}
puts hash["a"]
This just prints nothing.
puts hash["a"].class
This prints NilClass
Is there some kind of known bug in the following ruby version?
ruby 2.0.0p247 (2013-06-27 revision 41674) [universal.x86_64-darwin13]
I hope someone can help me out, this is driving me crazy. My IDE is RubyMine from JetBrains. I also tried to run it directly via IRB.
Thanks
PS. OS is OSX