An open API service indexing awesome lists of open source software.

https://github.com/nullpo-head/elvm-interpreter-in-rust

An ELVM interpreter in Rust
https://github.com/nullpo-head/elvm-interpreter-in-rust

Last synced: 6 months ago
JSON representation

An ELVM interpreter in Rust

Awesome Lists containing this project

README

          

# ELVM Interpreter in Rust

An ELVM interpreter, which I wrote for learning Rust.

## Usage

### Build

```bash
$ cargo build
$ cargo run
```

### Usage

```bash
$ ./rust_elvmi EIR_FILE
```

### Test

Testing is done by a Ruby script that is in `t/` directory. It tries to run the Release build of `rust_elvmi`.

```bash
$ cargo build --release
$ cd ./t
$ ./test.rb
```