为了更好的可读性,不要在一行中包含多条语句。

下列代码演示了这个规则:

a = "something"; b = "somethingElse"; // Non-Compliant
c = "anotherThing"; // Compliant