simplicityhl 0.7.0

Rust-like language that compiles to Simplicity bytecode.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use temp::constants::utils::two as smth;
use temp::funcs::{get_five, Smth};

fn seven() -> u32 {
    7
}

fn main() {
    let (_, temp): (bool, u32) = jet::add_32(smth(), get_five());
    assert!(jet::eq_32(temp, seven()));
}