loalang 0.1.20

Loa is a general-purpose, purely immutable, object-oriented programming language.
Documentation
#[macro_use]
mod vm_result;
pub use self::vm_result::*;

mod vm;
pub use self::vm::*;

mod const_value;
pub use self::const_value::*;

mod object;
pub use self::object::*;

mod class;
pub use self::class::*;

mod runtime;
pub use self::runtime::*;

mod call_stack;
pub use self::call_stack::*;