View Pit Stop page for race #9 by testsubject1 — Ghost race
View profile for Dan (testsubject1)
| Official speed | 63.68 wpm (29.02 seconds elapsed during race) |
|---|---|
| Race Start | October 12, 2025 3:12:14am UTC |
| Race Finish | October 12, 2025 3:12:43am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 93.0% |
| Points | 22.29 |
| 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") |