User-Defined Function Expressions
Brought to you by:
nathandelane
FunctionToken - "func"
ArgumentSeparatorToken - ","
FunctionDefinitionToken - ":"
A user-defined function might look like: func(square_x_and_y(_x, _y : (_x ** 2) + (_y ** 2)))
This function would then accept two parameters, and would be called like: square_x_and_y(12, 5)
The result would be: 169