View Pit Stop page for race #113 by cutecup — Ghost race
View profile for Jeremy (cutecup)
| Official speed | 60.64 wpm (30.47 seconds elapsed during race) |
|---|---|
| Race Start | November 18, 2025 7:56:20am UTC |
| Race Finish | November 18, 2025 7:56:50am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 21.22 |
| 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") |