WRITE writes quoted, comma separated strings to the screen.
WRITE CommaSeparatedStrings AS STRING
DIM a$, b$, c$ a$ = "three" b$ = "four" c$ = "five" WRITE "one", "two", a$, b$, c$
"one","two","three","four","five"