Arc is a programming language written entirely in Rust. It consists of a token scanner, bytecode compiler, and stack-based virtual machine.
You will need Cargo installed to compile and run Arc.
cargo runcargo run <file_name.arc>You will need wasm-pack installed to build Arc for WebAssembly.
wasm-pack build --target web --out-dir web/pkg
python3 -m http.server 8000 --directory webThen open http://localhost:8000 in your browser.
Currently hosted on my personal website: https://seas.upenn.edu/~narons/arc/.