Expand description

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!");
}
 
}

Re-exports

pub use heart::io::writef;

Modules

Macros

Six lang experimental parser.

Structs

Null-terminated borrowed string type. Same layout as C’s “char*”. Only standard ASCII support (not cp1251!).

Traits

Used for method-like access. If you want to pass only a type, use is_copy macro instead.

Type Definitions