airlang 0.26.0

Air is a minimalist and universal programming language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use airlang::syntax::repr::Repr;

use crate::byte;

pub(super) fn expected() -> Vec<Repr> {
    vec![
        byte(vec![]),
        byte(vec![]),
        byte(vec![]),
        byte(vec![0b00000000]),
        byte(vec![0x00, 0x00, 0x00, 0x00]),
        byte(vec![0xff]),
        byte(vec![0x0f, 0x0f, 0x0f]),
        byte(vec![0x00, 0x11, 0xff, 0xee]),
        byte(vec![0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef]),
    ]
}