NAME

system - terminate program execution

SYNOPSIS

system

DESCRIPTION

System causes all file buffers to be flushed, all open files to be closed, and program execution to terminate. 

EXAMPLE

The program
	for i = 1 to 100
	if i = 8 then system
		print i
	next
produces
	 1
	 2
	 3
	 4
	 5
	 6
	 7

SEE ALSO

end, stop

from The Basmark QuickBASIC Programmer’s Manual by Lawrence Leinweber