ALIAS
Syntax ALIAS name newname
 
Explanation ALIAS defines a new name with the same meaning as an existing name. The new name is an alias name for the existing name and behaves exactly like that name. The inputs do not need to be quoted.

ALIAS is handy for defining shortcuts or translations of commands.

Example ALIAS FORWARD GO
GO 100
(the turtle moves forward 100 steps)

TopIndex