safe_wren 0.1.0

A safe, pure-rust implementation of wren.io, drop-in replacement for wren.io's C implementation.
Documentation
// public API for safe_wren

mod compiler;
mod core;
mod opt {
    pub mod random_bindings;
}
mod vm;
pub mod wren;
mod ffi {
    pub mod c_api;
}
mod float_to_string;

extern crate libc;

// FIXME: These should not be public.
pub mod test;
pub mod wren_debug;

pub use crate::test::test_config;
pub use crate::wren::*;
pub use crate::wren_debug::{interpret_and_print_vm, print_bytecode, print_tokens};