Ruby - Class Methods and Variables
Given this Ruby code, what will be the output?
hash = {a: [1, 2], b: [3, 4]}
hash.freeze
hash[:a] << 5
puts hash[:a].inspect
What does this tell us about freezing objects?