class Value def initialize(val) @value = val end def my_value return @value end end value = Value.new(10) value.my_value