Line Breaks
Each line can contain one or more statements separated by colons.
' several statements on a line
a = 12 : b = 34 : c = 56
Statements can be split into multiple lines following an operator.
' a line split into several lines
print a + b /
c + 12