VocabularysyntaxSyntaxexecute( stack -- effect )
Word descriptionCalls the word on the top of the stack, asserting that it has the given stack effect. The word does not need to be known at compile time.
ExamplesIN: scratchpad
: eat ( -- ) ; : sleep ( -- ) ; : hack ( -- ) ;
{ eat sleep hack } [ execute( -- ) ] each
See alsoexecuteDefinition