Skip to content

Instantly share code, notes, and snippets.

@aarroyoc
Created August 27, 2014 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aarroyoc/99b1ab461318b3a644d0 to your computer and use it in GitHub Desktop.
Save aarroyoc/99b1ab461318b3a644d0 to your computer and use it in GitHub Desktop.
main.rs
mod vm;
fn main(){
let bytecode = "\x0E\x00\x02\x00\x03\x02\x0A";
let mut perin = vm::PerinVM::new();
perin.interpreter(bytecode);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment