1
0
Fork 0
mirror of synced 2025-09-23 20:28:36 +00:00
ZoKrates/zokrates_cli/examples/imports/import_structs.zok
2022-04-06 20:23:58 +02:00

9 lines
165 B
Text

from "./bar" import Bar as MyBar;
from "./bar" import Bar;
def main() {
MyBar my_bar = MyBar {};
Bar bar = Bar {};
assert(my_bar == bar);
return;
}