6.1.0070
'
tick
CORE
 
( "<spaces>name" -- xt )

Skip leading space delimiters. Parse name delimited by a space. Find name and return xt, the execution token for name. An ambiguous condition exists if name is not found. When interpreting, ' xyz EXECUTE is equivalent to xyz.

Rationale:
Typical use: ... ' name.

Many Forth systems use a state-smart tick. Many do not. Forth-2012 follows the usage of Forth 94.

Testing:
T{ : GT1 123 ;   ->     }T
T{ ' GT1 EXECUTE -> 123 }T