geam 0.1.1

Experimental Rust-embedded execution runtime for typed Gleam programs
1
2
3
4
5
6
use crate::gleam_stdlib::result::{GleamError, GleamOk, GleamResult};
use num_bigint::BigInt;

pub(super) type ParseResult = GleamResult<BigInt, ()>;
pub(super) type ParseOk = GleamOk<BigInt, ()>;
pub(super) type ParseError = GleamError<BigInt, ()>;