xpile 0.1.615

Polyglot transpile workbench (Python/C/C++/Rust/Ruchy/Lean ↔ Rust/Ruchy/PTX/WGSL/SPIR-V) with provable contracts at every layer.
1
2
3
def accumulate(x: int, acc: list[int] = [0]) -> int:
    acc.append(x)
    return len(acc)