Beginning of line in source code

BlitzMax Forums/BlitzMax Programming/Beginning of line in source code

kiami(Posted 2006) [#1]
In 'C', 'Enter' is recognized as continuation of the a code line, and I think in Visual Basic or PHP, one needs to type '_'. Do we have something like those for BlitzMAX?

An example: How can I have this:
Function f(x1, x2, x3, x4, x5
x6, x7, x9, x10)
...
...


End of Function


Perturbatio(Posted 2006) [#2]
.. is the line continuation


kiami(Posted 2006) [#3]
Thanks