View Pit Stop page for race #1 by zde4d — Ghost race
| Official speed | 78.07 wpm (23.67 seconds elapsed during race) |
|---|---|
| Race Start | May 11, 2025 7:13:43pm UTC |
| Race Finish | May 11, 2025 7:14:07pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 98.0% |
| Points | 27.32 |
| 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") |