View Pit Stop page for race #4 by thorsteinsson — Ghost race
View profile for Ægir (thorsteinsson)
| Official speed | 28.98 wpm (63.77 seconds elapsed during race) |
|---|---|
| Race Start | July 12, 2011 1:45:47pm UTC |
| Race Finish | July 12, 2011 1:46:51pm UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 90.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") |