The general syntax of a builtin statement is
name(parameters) statement
where name is the name of the builtin statement, parameters
stands for one or more parameters, and statement is the code that
will be executed inside the context opened by the builtin statement.
Note that statement can be a compound statement, as in
board(B) {
B.elements(E) printf("Element: %s\n", E.name);
B.Signals(S) printf("Signal: %s\n", S.name);
}
The following builtin statements are available:
Index | Copyright © 1999 CadSoft Computer GmbH |