STk Inspector


Introduction

The inspector is the simplest tool to visualize the value of Scheme variables. To inspect the variable my-variable, just type:
        STk> (inspect 'my-variable)
      

A variable can also be inspected in particular environment as in:

        STk> (inspect 'var (procedure-environment foo))
      
To uninspect a variable, just enter the following expression:
        (uninspect 'var)
      
or select the Uninspect option in the Icon menu associated with the object line inspector.

Screen organization

The inspector is a toplevel window divided in 2 areas:
Go to top