aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests/test_corelib.py
blob: 4a21e2966ab9e3050704e8b5380301addef283c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from hydro_roll_core import libcore

cb = libcore

def main():
    rule_pack = "example_rule_pack"
    result = cb.process_rule_pack(rule_pack)
    print(result)
    print(cb.name)
    cb.name = "a"
    print(cb.name)

if __name__ == "__main__":
    main()