There are two ways to use the inspector

  1. Create an object that you would like to inspect. Send it the message inspect. Select the code, then select the menu item (middle mouse button) Do It. For example:
    | anArray |
    anArray := #('abc' 123 13.5).
    anArray inspect.
    
  2. Create an object you would like to inspect, but this time, instead of choosing Do It, choose Inspect. The object returned by the last statement in the code fragment will be inspected.