View Pit Stop page for race #1 by pdad — Ghost race
| Official speed | 51.76 wpm (35.70 seconds elapsed during race) |
|---|---|
| Race Start | March 24, 2025 8:06:08am UTC |
| Race Finish | March 24, 2025 8:06:44am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 95.0% |
| Points | 18.12 |
| 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") |