View Pit Stop page for race #29 by hack89 — Ghost race
View profile for hack89 (hack89)
| Official speed | 39.44 wpm (46.86 seconds elapsed during race) |
|---|---|
| Race Start | May 10, 2022 8:17:58pm UTC |
| Race Finish | May 10, 2022 8:18:45pm UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 95.0% |
| Points | 13.80 |
| 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") |