QUOTE function

Syntax

QUOTE (expression)

Description

Use the QUOTE function to enclose an expression in double quotation marks. If expression evaluates to the null value, null is returned, without quotation marks.

Example

PRINT QUOTE(12 + 5) : " IS THE ANSWER."
END

This is the program output:

"17" IS THE ANSWER.