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
- Host: GitHub
- URL: https://github.com/nullpo-head/elvm-interpreter-in-rust
- Owner: nullpo-head
- Created: 2017-09-09T10:17:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-09T10:30:04.000Z (almost 9 years ago)
- Last Synced: 2024-12-30T05:36:53.098Z (over 1 year ago)
- Language: Rust
- Size: 759 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```