For better readability, do not put more than one statement on a single line.

Noncompliant Code Example

foo(); bar(); // Noncompliant

Compliant Solution

foo();
bar();

Deprecated

This rule is deprecated, and will eventually be removed.