View Pit Stop page for race #2 by dvorak25 — Ghost race
View profile for dvorak25 (dvorak25)
| Official speed | 52.69 wpm (35.07 seconds elapsed during race) |
|---|---|
| Race Start | May 4, 2025 9:25:43pm UTC |
| Race Finish | May 4, 2025 9:26:19pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 18.44 |
| 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") |