leo/compiler/tests/circuits/inline.leo
2020-06-07 20:45:19 -07:00

7 lines
80 B
Plaintext

circuit Circ {
x: u32
}
function main() -> Circ {
return Circ { x: 1u32 }
}