| comp' action-of drop |
comp' action-of drop |
| interpret/compile: what's ( interpretation "name" -- xt; compilation "name" -- ; run-time -- xt ) \ gforth-obsolete |
interpret/compile: what's ( interpretation "name" -- xt; compilation "name" -- ; run-time -- xt ) \ gforth-obsolete |
| \G Old name of @code{action-of} |
\G Old name of @code{action-of} |
| |
|
| |
|
| |
: typewhite ( addr n -- ) \ gforth |
| |
\G Like type, but white space is printed instead of the characters. |
| |
\ bounds u+do |
| |
0 max bounds ?do |
| |
i c@ #tab = if \ check for tab |
| |
#tab |
| |
else |
| |
bl |
| |
then |
| |
emit |
| |
loop ; |
| |
|