meplang 0.1.8

An EVM low-level language that gives full control over the control flow of the smart contract.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod attribute;
mod block;
mod constant;
mod contract;
mod file;
mod function;
mod literal;
mod variable;

pub use attribute::*;
pub use block::*;
pub use constant::*;
pub use contract::*;
pub use file::*;
pub use function::*;
pub use literal::*;
pub use variable::*;