Node:Commands, Next:Caveats, Previous:RSyntax, Up:Ratfor
break; // Used withcaseor to break out of loops, as in C. case i: // Used withswitch. default: // Used withcase, as in C. do ...; {...} // Note the semicolon (unnecessary if followed by a compound stmt). else {...} // Used afterifas in C. for(a;b;c) {...} // As in C. if(condition) {...} next; // Equivalent to C's |continue| statement; go to bottom of loop. repeat {...} until(condition); // Equivalent to C'sdo {...} while();return expression; // As in C. switch(expression) {...} // As in C. while(condition) {...} // Like C'swhile.
contains:
interface name {...}
interface operator(op) {...}
interface assignment(assgnmnt) {...}
module name {...}
private:
sequence:
type name {...}
where(expression) {...}