/**
* -- The Optional Programming-Tools Word Set
*
* Copyright (C) Tektronix, Inc. 1998 - 2001. All rights reserved.
*
* @see GNU LGPL
* @author Tektronix CTE @(#) %derived_by: guidod %
* @version %version: bln_mpt1!5.18 %
* (%date_modified: Wed Jul 17 14:03:04 2002 %)
*
* @description
* The ANS Forth defines some "Programming Tools", words to
* inspect the stack (.S), memory (DUMP),
* compiled code (SEE) and what words
* are defined (WORDS).
*
* There are also word that provide some precompiler support
* and explicit acces to the CS-STACK.
*
*//*@{*/
/**SEE( "word" -- )
* decompile word - tries to show it in re-compilable form.
*
* (SEE) tries to display the word as a reasonable indented
* source text. If you defined your own control structures or
* use extended control-flow patterns, the indentation may be
* suboptimal.
simulate:
: SEE [COMPILE] ' (SEE) ;
*/