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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;