4 SC1045
Joachim Ansorg edited this page 2021-11-12 10:34:56 +01:00

It's not foo &; bar, just foo & bar.

Problematic code:

foo &; bar

Correct code:

foo & bar

Rationale:

Both & and ; terminate the command. You should only use one of them.

Exceptions

None.