Files
pebble/main.py
T
2026-02-06 15:51:23 +01:00

13 lines
183 B
Python

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