DQUOTE function

Syntax

DQUOTE (expression)

Description

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

Example

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

This is the program output:

"17" IS THE ANSWER.