A runtime in Rust to run AGC or Alan Graphcode, alan's bytecode format.
This runtime is licensed AGPL 3.0 but the alan standard library and the Javascript runtime shim are licensed Apache 2.0 so you can freely distribute your compiled code.
cargo build
cargo run -- run <sourcefile>
The source file has to be .agc
format.
To run an optimized build:
cargo build --release
./target/release/alan-runtime run <sourcefile>
The alan runtime
is backed by a single-threaded, or basic, Tokio scheduler and uses a Rayon
threadpool to run cpu bound opcodes.
To contribute to the alan runtime
you need to sign a Contributor License Agreement (TODO: figure this out), Alan Technologies will retain the right to relicense this code in licenses other than AGPL 3.0 concurrently or in the future to convert to a newer license.
AGPL 3.0