Return string representation of argument. If argument is already a string or a character, enquote it to make it more readable.
assert(enquote(0) == "0"); assert(enquote(enquote(0)) == `"0"`); assert(enquote("foo") == `"foo"`); assert(enquote('a') == "'a'");
See Implementation
Return string representation of argument. If argument is already a string or a character, enquote it to make it more readable.