cairo-native 0.9.0-rc.4

A compiler to convert Cairo's IR Sierra code to MLIR and execute it.
1
2
3
4
5
6
7
8
use box::BoxTrait;
use box::BoxImpl;

fn run_test() -> Box<u32>  {
    let x: u32 = 2_u32;
    let box_x: Box<u32> = BoxTrait::new(x);
    box_x
}