python, twice removed
your code → pyex (a Python interpreter in Elixir) → compiled BEAM bytecode → WasmGC → this Worker
def fib(n): return n if n < 2 else fib(n-1) + fib(n-2) print([fib(i) for i in range(15)]) print(f"2**100 = {2**100}")
run
…