type  ( addr len -- )

published: 29 January 2023 / updated 29 January 2023

Lire cette page en français

 

Display the string characters over len bytes.

Example:

: hello ( --- addr c) 
s" Hello world" ; 
\ on gForth: 
hello                   \ stack  2141733944 21 
type                    \ display: Hello world 
hello drop 5 type       \ display: Hello