All pastes #2112339 Raw Edit

Mine

public ruby v1 · immutable
#2112339 ·published 2012-02-08 08:58 UTC
rendered paste body
class Foo    BAR = 0x01    BAZ = 0x02    attr_accessor :state    def frobify      # ??    end        def to_s        "state: #{frobify( @state )}"    endendf = Foo.newf.state = Foo::BARputs f # This should output# state: Foo::BAR# or·# state: BAR