Statusbar for Built-in procedure:
Str(Value) - Convert a signed integer number INTO a string.
Code: Select all
Procedure.d MyAdd(x.d, y.d) ; add x to y and return sum in double
ProcedureReturn x+y
EndProcedure
MyAdd.d(x.d, y.d) - add x to y and return sum in double