Skip to content

Function

Description

A function is an identifier which can be used to unconditionally invoke the execution of a series of instructions.

Example

fnn square {
    dup *
}

"3 squared is " print
3 square printLine

Result

3 squared is 9