mathic 0.2.0

A compiler with builtin support of symbolic operations, built with LLVM/MLIR
1
2
3
4
5
6
7
8
df main() i32 {
    let x: i32 = 3;
    if x > 5 {
        return 1;
    } else {
        return 0;
    }
}