Introduce inspect

This commit is contained in:
Shalini Roy 2024-12-12 05:29:23 -08:00
parent 6efba3485e
commit a51eb67742

View File

@ -558,6 +558,9 @@ dwight.name #=> "Dwight K. Schrute"
# Calling of a class method
Human.say('Hi') #=> "Hi"
# Tip: Use .inspect to see instance with instance variables
puts jim.inspect #=> #<Human:0x000058b3c7f0c7a0 @name="Jim Halpert", @age=0>
# Variable's scopes are defined by the way we name them.
# Variables that start with $ have global scope.
$var = "I'm a global var"