mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +03:00
15 lines
172 B
Plaintext
15 lines
172 B
Plaintext
circuit Foo {
|
|
function qux() {}
|
|
|
|
function bar() {
|
|
Self::qux();
|
|
}
|
|
|
|
function baz() {
|
|
Self::bar();
|
|
}
|
|
}
|
|
|
|
function main() {
|
|
Foo::baz();
|
|
} |