raton 0.1.0-alpha.9

ratón is a tiny, modular, embeddable scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg_attr(test, feature(test))]
#![forbid(unsafe_code)]
#![warn(missing_docs)]

//! # Ratón 🐁
//! A tiny, highly modular, embeddable, dynamically typed scripting language with a bytecode VM, intended for use in games.

pub mod ast;
pub mod bytecode;
mod common;
pub mod compiler;
pub mod runtime;
pub use common::*;
pub mod prelude;

#[cfg(all(test, not(miri)))]
mod benches;