This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

inspect

        # String.inspect

(from ruby core)
---
    inspect -> string

---

Returns a printable version of `self`, enclosed in double-quotes, and
with special characters escaped:

    s = "foo\tbar\tbaz\n"
    # => "foo\tbar\tbaz\n"
    s.inspect
    # => "\"foo\\tbar\\tbaz\\n\""



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.