cairo-native 0.8.0

A compiler to convert Cairo's IR Sierra code to MLIR and execute it.
1
2
3
4
5
6
7
8
fn main() -> (bool, bool, bool, bool) {
    (
        true & true,
        true & false,
        false & true,
        false & false,
    )
}