View Pit Stop page for race #1 by xasl231 — Ghost race
View profile for qqq (xasl231)
| Official speed | 33.69 wpm (54.85 seconds elapsed during race) |
|---|---|
| Race Start | March 10, 2025 7:27:20am UTC |
| Race Finish | March 10, 2025 7:28:15am UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 96.0% |
| Points | 11.79 |
| 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") |