leo/compiler/tests/circuits/inline.leo

7 lines
77 B
Plaintext
Raw Normal View History

2020-07-17 06:47:47 +03:00
circuit Foo {
2020-05-20 07:59:00 +03:00
x: u32
}
2020-07-17 06:47:47 +03:00
function main() -> Foo {
return Foo { x: 1u32 }
2020-05-20 07:59:00 +03:00
}