SPL is a free form language. Statements are delimited by the ; character and can appear on multiple lines. For example,
a=10;b=20;
can also be written as:
a = 10;
b = 20;
The ; is optional for a single statement invoked from the command line.