Ruby - Class Methods and Variables
What will be the output of the following Ruby code?
arr = [1, 2, 3] frozen_arr = arr.freeze copy = frozen_arr.clone puts copy.frozen?
