geam 0.1.1

Experimental Rust-embedded execution runtime for typed Gleam programs
mod bit_array;
mod bool;
mod custom;
mod external;
mod float;
mod int;
mod never;
mod nil;
mod string;
mod tuple;
mod utf_codepoint;

pub(in crate::runtime) use bit_array::{bit_array_parameter_locals, run_bit_array};
pub(in crate::runtime) use bool::{bool_parameter_locals, run_bool};
pub(in crate::runtime) use custom::run_custom;
pub(in crate::runtime) use external::run_external;
pub(in crate::runtime) use float::{float_parameter_locals, run_float};
pub(in crate::runtime) use int::{int_parameter_locals, run_int};
pub(in crate::runtime) use never::{run_never, run_never_value};
pub(in crate::runtime) use nil::{nil_parameter_locals, run_nil};
pub(in crate::runtime) use string::{run_string, string_parameter_locals};
pub(in crate::runtime) use tuple::run_tuple;
pub(in crate::runtime) use utf_codepoint::{run_utf_codepoint, utf_codepoint_parameter_locals};