simplicityhl 0.7.0

Rust-like language that compiles to Simplicity bytecode.
Documentation
1
2
3
4
5
6
7
use math::arithmetic::add;
use crypto::hashes::sha256;

fn main() {
    let sum: u32 = add(2, 3);
    let hash: u256 = sha256(sum);
}