mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-18 15:31:32 +03:00
13 lines
207 B
Plaintext
13 lines
207 B
Plaintext
|
circuit Bar {
|
||
|
b2: u32
|
||
|
|
||
|
function add_five(z:u32) -> u32 {
|
||
|
return z+5u32
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function main () {
|
||
|
let Bar = 66u32;
|
||
|
const k1 = Bar{ b2: 30u32 };
|
||
|
const k2 = Bar::add_five(55u32);
|
||
|
}
|