mentsRe: call_func()
- Posted by SDPringle Jan 23, 2016
- 1678 views
Then routine call_func, takes an integer which represents a routine as the first argument and a sequence of all of its arguments you pass to it:
integer y = Routine(4)
becomes
integer r_id = routine_id("Routine") integer y = call_func(r_id, {4})