xbasic 0.3.2

A library that allows adding a scripting language onto your project with ease. This lets your users write their own arbitrary logic.
Documentation
pub mod basic_io;
mod chunk;
mod compiler;
pub mod error;
mod error_handler;
pub mod expr;
mod function;
mod native_function;
mod opcodes;
mod parser;
mod resolver;
mod scanner;
mod std;
mod stmt;
mod tokens;
mod visitor;
mod vm;
pub mod xbasic;