typing code : return to the line

BlitzMax Forums/BlitzMax Beginners Area/typing code : return to the line

hub(Posted 2006) [#1]
Hi !
is there a symbol to return to the next line without a compiler error if you want separate function parameters for example ?

thanks !

ex :
function Test(x:int, y:int,y:int)

->
function Test(x:int,
              y:int,
              z:int)



REDi(Posted 2006) [#2]
Function Test(x:Int,..
              y:Int,..
              z:Int)
EndFunction



hub(Posted 2006) [#3]
@papa : thanks


REDi(Posted 2006) [#4]
. :)