SeeView Manual

SeeView Statements and Script Symbols
HP NonStop SeeView Manual526355-004
9-143
Quotation Mark “
Example
This example shows how to use quotation mark script symbols.
VAR lineno := 0
, #s := "thistextgetsdropped ( Msg on line 25 )"
;
DO BEGIN
LINE lineno:=lineno+1;
"Line " & lineno;
END UNTIL lineno >= 24;
MSG #DROP #s; { Line25 = ( Msg on line 25 )