rvm-lib 0.0.1

Educational Virtual Machine written in Rust.
Documentation

#[derive(Debug)]
pub struct Rvm {
}

impl Rvm {
    /// New Rvm
    pub fn new() -> Self {
        println!("-> Rvm::new()");
        Self {}
    }
}

#[cfg(test)]
mod tests_rvm {
    use super::Rvm;

    #[test]
    fn test_rvm1() {
        Rvm::new();
    }
}