Index

refcall

refcall

Description

Takes a string from the stack and invokes a function of that name. Note that the string is case insensitive.

Examples

refcall ("MyFunc")
 
:MyFunc
    trace("MyFunc called")

Index