FUNCTION (fn#, p1, p2....) |
Purpose | One way of calling a custom function using its function # (or label name) and supplying parameters p1, p2 separated by commas., |
Examples | A# = FUNCTION (10, B#, FP[5], 0.1245) |
Comments: | Custom function #10 will be called and the values in B#, FP[5] and the constant 0.1245 will be passed to function #10 as local variables %[1] , %[2] and %[3], respectively. |