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

13 lines
192 B
Python

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