Skip to content
Vidar Holen edited this page Oct 4, 2015 · 3 revisions

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.

Clone this wiki locally