EAGLE Help

Semicolon


The semicolon terminates a statement, as in
i = a + b;
and it also delimits the init, test and increment expressions of a for statement:
for (int n = 0; n < 3; ++n) {
    func(n);
    }

Index Copyright © 2005 CadSoft Computer GmbH