rustkernel 0.0.21

Kernel for running Rust code interactively in VS Code Notebook
Documentation
1
2
3
4
5
6
// Makes `Cell` and `Program` available from root e.g. `use rustkernel::Program`
pub use self::program::{Cell, Program};

// Links the code from `handlers.rs` and `program.rs`
pub mod handlers;
pub mod program;