Change the code above to the following:
DEFINE VARIABLE myBuffer AS CHARACTER NO-UNDO.
DEFINE VARIABLE myBuffer2 AS CHARACTER NO-UNDO.
myBuffer = QUOTER("Hello").
OUTPUT TO "C:\quoter1.txt".
EXPORT myBuffer.
OUTPUT CLOSE.
INPUT FROM "C:\quoter1.txt".
IMPORT myBuffer2.
MESSAGE myBuffer2 VIEW-AS ALERT-BOX.
INPUT CLOSE.
The output of the MESSAGE STATEMENT is "Hello" and not """Hello""".
Please notice that the IMPORT statement is IMPORT and not IMPORT UNFORMATTED. IMPORT UNFORMATTED reads in """Hello""".