airlang 0.26.0

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

box_wrap!(pub IntVal(Int));

derive_debug!(IntVal(Int));

derive_display!(IntVal(Int));