pr47 0.0.3

A semi-experimental programming language. Still working in progress.
Documentation
#![allow(incomplete_features)]
#![feature(test)]
#![feature(raw)]
#![feature(specialization)]
#![feature(associated_type_defaults)]
#![feature(fn_traits)]

pub mod bind;
pub mod syntax;
pub mod vm;
pub mod util;
pub mod error;
pub mod ast;
pub mod sema;

#[cfg(test)]
mod test {
    #[test]
    fn test() {

    }
}