WRITE statement
Purpose: WRITE writes quoted, comma separated strings to the screen.
Syntax:
WRITE CommaSeparatedStrings$
Parameters:
|
Example:
DIM a$, b$, c$ a$ = "three" b$ = "four" c$ = "five" WRITE "one","two",a$,b$,c$
Result:
"one","two","three","four","five"