Reverse()

Returns the given string but in reverse order

Usage

STRING = Reverse( string )
Argument Summary
string string

Calling

Supports named-parameter calling allowing you to use the function like:

Reverse(
   string=?
);

Supports passing parameters as a structure using ArgumentCollection:

Reverse( ArgumentCollection={
   string : ?
} );