bean-script 0.2.12

Simple scripting language for easy use in other projects.
Documentation
1
2
3
4
5
6
7
8
use super::ModuleBuilder;

mod collections;
mod runtime;

pub(super) fn construct(module: &mut ModuleBuilder) {
	module.submodule("runtime", runtime::construct);
}