function toString(expression)
toString() converts the argument to a string. It converts integral and floating point numbers and booleans to strings,
and if called with a string will leave it unchanged.
Arguments:
RETURN toString(11.5), toString("already a string"), toString(TRUE)