Is everything in Ruby an object?

Technology CommunityCategory: RubyIs everything in Ruby an object?
VietMX Staff asked 3 years ago

Methods are not objects. Blocks are not objects. Keywords are not objects. However, there exist Method objects and Proc objects, and some keywords refer to objects.