Standalone transpiler from Aleph to Python. Reads Aleph source from stdin, writes Python to stdout.
- Rust installed on your system
cargo build --release
echo "3 + 4" | ./target/release/aleph2pyOutput:
3 + 4stdin → aleparser → constantfolding → pythongen → stdout