fn decrement(i: int) -> str { if i == 0 { return "Done!"; } decrement(i - 1) } write_line(decrement(10_000))