libsix 0.0.2

Compact programming language built on top of Rust ecosystem.
Documentation

libsix is the main part of six lang. It must be used inside rust. Example:

extern crate libsix;
use libsix::*;

six!{

entry {
print!("Hello, World!");
}

}