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
#![doc = include_str!("../README.md")]

mod ast;
mod compile;
mod parser;
mod pre_processing;
mod types;

pub use compile::artifacts::{Artifacts, BlockArtifacts, ContractArtifacts};
pub use compile::file::compile_file;
pub use compile::settings::{CompilerSettings, FillingPatern};