mathic 0.2.0

A compiler with builtin support of symbolic operations, built with LLVM/MLIR
1
2
3
4
5
6
7
df main() i64 {
    return double(5);
}

df double(x: i64) i64 {
    return x * 2;
}