CONTINUATION:

	The continuation characters used in RLaB are `...'. This is
	similar to the MATLAB v4.0 continuation. A statement can be
	broken anywhwere, and continued on the next line if a
	continuation (`...') is used.

	Example:

	> a = [1,2,3,...
	>      4,5,6,...
	>      7,8,9]
	 a =
	 matrix columns 1 thru 5
	           1           2           3           4           5
	
	 matrix columns 6 thru 9
	           6           7           8           9

	> eye (2...
	>      ,2)
	 matrix columns 1 thru 2
	        1          0  
	        0          1  

	Notice that:

	> 23
	       23

	Is not the same as:

	> 2...
	> 3
	        2
	        3

	Tokens, such as variable names, numbers, commands, and
	keywords can not be continued on the next line.
