oakc 0.6.1

A portable programming language with a compact backend
Documentation

const TEST = 0;
#[if(TEST) {
    fn bad_fn() {
        if 1 {
            putstrln("This function definition should error")
        }
    }
}]


fn main() {
    let a = true;
    while a {
        if 1 != 0 {
            a = false;
        }
    }
}