Noob question about formatting types data

BlitzMax Forums/BlitzMax Beginners Area/Noob question about formatting types data

Olla(Posted 2006) [#1]
Instead of having one long data line, like this example:

Local AsciiTable[] = [0,2,0,35,0,0,0,0,36,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,0,0,0,0,86,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0]

Is it possible to split up over more lines so that it is easier to read in the source code?


H&K(Posted 2006) [#2]
put .. this means "Command continued on next line"
i.e
Global	MainWindow	:TGadget	= CreateWindow(	"Game Window",..
							 (DeskTopSize.CX-WindowSize.CX)/2 ,..
							 (DeskTopSize.CY-WindowSize.CY)/2 ,..
							 WindowSize.CX ,..
							 WindowSize.CY ,..
							 Null,..
							 WINDOW_CLIENTCOORDS)


I had to ask last week ;)


Olla(Posted 2006) [#3]
Thanks .... ;-)