NAME

write - write to standard output

SYNOPSIS

write ExprList

DESCRIPTION

The write statement resembles print, except that write inserts commas between displayed expressions, uses quotation marks as the string delimiter, and omits the blank that print places before a positive number. 

ExprList is a list of string and/or numeric expressions, separated by commas or semicolons.  If ExprList is omitted, a blank line is output.  A newline is output following the last item in the list. 

EXAMPLE

The program
	a = 52 : b = 40 : c$ = "VANCOUVER"
	write a, b, c$
produces
	52,40,"VANCOUVER"

SEE ALSO

print, write #

from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber