leo/compiler/tests/circuit/inline.leo
2020-05-19 21:59:00 -07:00

7 lines
80 B
Plaintext

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