rust_multistackvm 0.38.0

Stack-based virtual machine on top of rust_multistack crate
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::multistackvm::*;
use easy_error::{Error};

impl VM {
    #[time_graph::instrument]
    pub fn call_internal_word(&mut self, name: String) -> Result<&mut VM, Error> {
        let fun_name = &name[1..];
        self.i(fun_name.to_string().clone())
    }
}