Misc features
Multi pass
A forward function declaration has the form:
void someFunc(int a, int b);
These forward declarations are never required in universe and thus are obsolete. They may be specified but are ignored. Function can call any other function regardless of where it is specified.
Universe Compiler uses graph theory to order the functions in such a way that the least amount of required prototypes are generated.
Block comments
Block comments are allowed:
/* This is a comment */
Block comments cannot be nested like:
/* /* Nested comment. */ */
Comments