13 lines
189 B
Python
13 lines
189 B
Python
from pathlib import Path
|
|
|
|
from src.pebble import Pebble
|
|
|
|
|
|
def main():
|
|
path: Path = Path("examples/basic/21_super.peb")
|
|
Pebble.run_file(path)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|