Module Format

A module may be called as if it were a function, however, modules should not appear in scripts unless it is desired that they be launched. Some typical module calls might look like:

MonitorPump() { Start a module instance running };

myResult = Sin(DrawArc(0, 45) * 0.0174533);

{ Use module as function }; 

Note that the second example starts an instance of the DrawArc module running.