View Pit Stop page for race #11 by thomascdh — Ghost race
View profile for thomas (thomascdh)
| Official speed | 32.99 wpm (56.02 seconds elapsed during race) |
|---|---|
| Race Start | March 21, 2025 10:19:31pm UTC |
| Race Finish | March 21, 2025 10:20:27pm UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 94.0% |
| Points | 11.55 |
| 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") |