1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#![feature(vec_remove_item)]
#![feature(alloc_layout_extra)]
#![feature(ptr_offset_from)]

#[macro_use] pub extern crate decorator;

pub mod compiler;
#[macro_use] pub mod ast;
pub mod hanayo;
pub mod vmbindings; // TODO
pub use vmbindings::gc;
pub use vmbindings::vm;