I was only asking for a way of making a call to a routine or Procedure a bit neater.
I want to do something or lots of things without necessarily needing to return a value.

DoSomething(Params)

Is much nicer than:-

Gosub "DoSomething" ; using Global variables
or
$ = DoSomething($params)

If you currently call a Function without assigning its value to a variable, it prints the returned value to the console. Messy!

Cheers anyway,
_________________________
Bill