We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
[WIP] Rust implementation of (a subset of) Java compiler
class Test { void main() { writeInt(factorial(12)); } int factorial(int i) { int p; p = 1; while (i > 1) { p = p * i; i = i - 1; } return p; }}
[x] does not exactly mean done. It just means I consider it done. There may still be bugs (e.g. no overflow is accounted for in Lexer right now)