View Pit Stop page for race #363 by hawk691 — Ghost race
View profile for Marko (hawk691)
| Official speed | 26.94 wpm (68.60 seconds elapsed during race) |
|---|---|
| Race Start | October 5, 2025 11:23:14am UTC |
| Race Finish | October 5, 2025 11:24:22am UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 97.0% |
| Points | 9.43 |
| Text | #10002 (Length: 154 characters) import os import sys def run(program, *args): pid = os.fork() if not pid: os.execvp(program, program + args) return os.wait()[0] run("python", "hello.py") |