Files
pebble/main.py

13 lines
188 B
Python

from pathlib import Path
from src.pebble import Pebble
def main():
path: Path = Path("examples/basic/20_init.peb")
Pebble.run_file(path)
if __name__ == '__main__':
main()