airlang 0.26.0

Air is a minimalist and universal programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::semantics::val::Val;
use crate::trait_::derive::derive_debug;
use crate::trait_::derive::derive_display;
use crate::type_::Solve;
use crate::type_::wrap::box_wrap;

box_wrap!(pub SolveVal(Solve<Val, Val>));

derive_debug!(SolveVal(Solve<Val, Val>));

derive_display!(SolveVal(Solve<Val, Val>));