For better readability, do not put more than one statement on a single line.
Noncompliant Code Example
WRITE 'Hello World'. WRITE 'You can use multiple statements on a line'.
Compliant Solution
WRITE 'Hello World'.
WRITE 'You can use multiple statements on a line'.
WRITE 'But you shouldn't.'.