Joy Online Manual

NAME
self - Current interpreter

SYNOPSIS

self

DESCRIPTION
The global variable self points to the current interpreter instance.  Do not confuse this global self with the hidden parameter self that points to the target of the current message inside method implementations (you can use $::self to access the current interpreter inside a method implementation body).

EXAMPLE

tcl> set self
ITKTclInterp@0x4e46fc

Index