keleusma-cli 0.2.1

Standalone command-line frontend for Keleusma. Provides a script runner, a bytecode compiler, and an interactive REPL so users can work with Keleusma scripts without writing any Rust host code.
1
2
3
4
5
6
7
8
9
// Example Keleusma script. Run with `keleusma run hello.kel`.

fn double(x: Word) -> Word {
    x + x
}

fn main() -> Word {
    double(21)
}