Write muti lines problem in ide

BlitzMax Forums/BlitzMax Beginners Area/Write muti lines problem in ide

Deledom(Posted 2007) [#1]
Hello all

I wish write a array with aroud 100 number, but for good readability i wish whrite this in multi line like this view below :

Local ArImages[] = [0,29,31,25,58,31,91,30,123,23,148,23,173,33, 208,29,
239,15, 256,21, 279,28, 309,23,334,35, 371,33, 406,33, 441,26,
469,37, 508,29, 539,27, 568,28,598,30, 630,30, 662,46, 710,30,
742,28, 772,29,803,27, 832,27,861,27, 890,26, 918,26, 946,25,
973,27,1002,28,1032,19,1053,22, ... ]

it is possible ?

Sorry for my bad english langage
Thank you for help
Dom


grable(Posted 2007) [#2]
Yes, use .. at the end of each extended line =)
Local s:String = "Hello " + ..
"World"



Deledom(Posted 2007) [#3]
it's work !
Thank you
Dom