ling-lang 2030.0.1

Ling - The Omniglot Systems Language
1
2
3
4
5
6
7
8
9
10
11
12
// src/mir/mod.rs


pub struct MirProgram {
    pub functions: Vec<MirFunction>,
}

pub struct MirFunction {
    pub name: String,
    pub blocks: Vec<()>,
}