View Pit Stop page for race #7 by jap23 — Ghost race
View profile for Wumbo (jap23)
| Official speed | 63.98 wpm (28.88 seconds elapsed during race) |
|---|---|
| Race Start | May 15, 2015 6:26:23pm UTC |
| Race Finish | May 15, 2015 6:26:52pm UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 83.0% |
| Points | 0.00 |
| 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") |