VocabularykernelInputs and outputsWord descriptionExecutes a word. Words which
execute an input parameter must be declared
inline so that a caller which passes in a literal word can have a static stack effect.
ExamplesUSING: kernel io words ;
IN: scratchpad
: twice ( word -- ) dup execute execute ; inline
: hello ( -- ) "Hello" print ;
\ hello twice
Hello
Hello
See alsoexecute(DefinitionMethods