A Small question: what happend to ;

Monkey Forums/Monkey Programming/A Small question: what happend to ;

Salmakis(Posted 2013) [#1]
Hey, in blitzmax i could put 2 lines into one line with the ; sign.

in some cases i like to do that to keep code more readable

i see this is not possible in monkey anymore?
or is it just another sign now?


therevills(Posted 2013) [#2]
I thought ';' now works...

Function Main()
	Print "HELLO" ; Print "OI!"
End