View Pit Stop page for race #2 by daniel0731ex — Ghost race
View profile for daniel0731ex (daniel0731ex)
| Official speed | 47.67 wpm (38.77 seconds elapsed during race) |
|---|---|
| Race Start | January 23, 2014 7:19:43pm UTC |
| Race Finish | January 23, 2014 7:20:22pm UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 94.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") |