Line spanning

BlitzMax Forums/BlitzMax Programming/Line spanning

Nigel Brown(Posted 2006) [#1]
Is it possible to span a line with BlitzMAX? I am trying to:

myvar:String[] = [ "fred",
"joe",
]


Dreamora(Posted 2006) [#2]
yes, but you need .. to span a line

local a:string = "I want to " + ..
"show you " + ..
"how to do it :-)"