2020-07-17 06:47:47 +03:00
|
|
|
circuit Foo {
|
2020-07-17 22:59:18 +03:00
|
|
|
static function new() -> Self {
|
|
|
|
return Self { }
|
|
|
|
}
|
2020-05-20 22:45:40 +03:00
|
|
|
}
|
|
|
|
|
2020-07-17 06:47:47 +03:00
|
|
|
function main() -> Foo {
|
2020-07-17 22:59:18 +03:00
|
|
|
return Foo::new()
|
2020-05-20 22:45:40 +03:00
|
|
|
}
|