RESTful C compiler. Uses great things like JSON and APIs. Had enough buzzwords yet? ;)
- Compile integer literals
- Compile basic unary operators
- Compile basic binary operators (
+,-,*,/) - Compile many more binary operators (
&&,%,^,<<, ...) - Compile local variable declarations and usages (type
int) - Compound assignment operators (
+=,-=, ...) - Prefix/postfix increment/decrement operators (
++,--) - Conditionals (
if,?) - Block syntax (lexical scoping)