mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-20 16:51:44 +03:00
15 lines
193 B
Plaintext
15 lines
193 B
Plaintext
|
circuit Foo {
|
||
|
static function qux() {}
|
||
|
|
||
|
static function bar() {
|
||
|
Self::qux();
|
||
|
}
|
||
|
|
||
|
static function baz() {
|
||
|
Self::bar();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function main() {
|
||
|
Foo::baz();
|
||
|
}
|