slovo/benchmarks/array-struct-field-loop/run.py
2026-05-22 08:38:43 +02:00

14 lines
314 B
Python

#!/usr/bin/env python3
"""Run the local array-struct-field-loop benchmark scaffold."""
from pathlib import Path
import sys
sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
from runner import main
if __name__ == "__main__":
raise SystemExit(main(Path(__file__).resolve().parent, sys.argv[1:]))