mica 0.7.1

A simple, user-friendly, embeddable scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The bytecode representation of Mica.

mod chunk;
mod dispatch_table;
mod environment;
mod function;
mod impls;
mod opcode;
mod opr24;

pub use self::{
    chunk::*, dispatch_table::*, environment::*, function::*, impls::*, opcode::*, opr24::*,
};