Files
pebble/main.py

13 lines
199 B
Python

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