typing code : return to the line

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

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)


Function Test(x:Int,..
              y:Int,..
              z:Int)
EndFunction


@papa : thanks

. :)