STATIC FUNCTION Quote ( String AS String ) AS StringQuotes a string by using the Gambas string syntax.
It transforms a string into something than can be evaluated to the same string by the Gambas interpreter. In other words:
PRINT Eval(Quote(AnyString))
is an exact equivalent of
PRINT AnyString
PRINT Quote("This is not a \"quoted\"\nmulti-line string.")
"This is not a \"quoted\"\nmulti-line string."