Convenience functions for converting one or more arguments of any type into text (the three character widths).
assert( text(42, ' ', 1.5, ": xyz") == "42 1.5: xyz"c); assert(wtext(42, ' ', 1.5, ": xyz") == "42 1.5: xyz"w); assert(dtext(42, ' ', 1.5, ": xyz") == "42 1.5: xyz"d);
See Implementation
Convenience functions for converting one or more arguments of any type into text (the three character widths).