mango 0.4.0

The Mango programming language (UNDER CONSTRUCTION)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod block;
pub use self::block::Block;
pub use self::block::Group;

pub mod branch;
pub use self::branch::Branch;
pub use self::branch::BranchIf;
pub use self::branch::Label;

pub mod repeat;
pub use self::repeat::Loop;

pub mod function;
pub use self::function::Call;
pub use self::function::Return;