1 2 3 4 5 6 7 8 9 10 |
>>
>> 'bar'
>> end
=> nil
>> method(:foo)
=> #<Method: Object#foo>
>> foo
=> "bar"
>> Object.new.respond_to? :foo
=> true
|
Pastie
Support Pastie
or read my
Pastie << self
blog
1 2 3 4 5 6 7 8 9 10 |
>>
>> 'bar'
>> end
=> nil
>> method(:foo)
=> #<Method: Object#foo>
>> foo
=> "bar"
>> Object.new.respond_to? :foo
=> true
|