airlang 0.26.0

Air is a minimalist and universal programming language.
Documentation
pub use self::bit::Bit;
pub use self::byte::Byte;
pub use self::call::Call;
pub use self::cell::Cell;
pub use self::decimal::Decimal;
pub use self::decimal::DecimalConfig;
pub use self::decimal::RoundingMode;
pub use self::either::Either;
pub use self::int::Int;
pub use self::key::Key;
pub use self::list::List;
pub use self::map::Map;
pub use self::pair::Pair;
pub use self::quote::Quote;
pub use self::solve::Solve;
pub use self::text::Text;
pub use self::unit::Unit;

pub(crate) mod wrap;

mod unit;

mod bit;

mod key;

mod text;

mod int;

mod decimal;

mod byte;

mod cell;

mod pair;

mod either;

mod list;

mod map;

mod quote;

mod call;

mod solve;