Skip to content

Function

Function.call

Takes in an function, list of arguments and returns the result of the function after calling.

Signature
-> List<Any> params : Any
Example
printString := -> value {
    print(value);
};

# prints "Hello World!"
Function.call(printHello, ["Hello World!"]);