airlang 0.26.0

Air is a minimalist and universal programming language.
Documentation
1
2
3
4
5
6
7
use airlang::syntax::repr::Repr;

use crate::bit;

pub(super) fn expected() -> Vec<Repr> {
    vec![bit(false), bit(true)]
}