ce playground
a toy C-like compiler running in your tab as wasm —
source
·
home
source — int, bool, number, char · functions · if/while/for · Int <: Number subtyping
int fib(int n) { if (n < 2) return n; return fib(n - 1) + fib(n - 2); } int main() { print_int(fib(10)); return 0; }
llvm ir — as emitted (no optimization passes)
loading compiler.wasm …