View Pit Stop page for race #3 by secondarily — Ghost race
View profile for Tranquility (secondarily)
| Official speed | 64.75 wpm (28.54 seconds elapsed during race) |
|---|---|
| Race Start | June 25, 2012 8:49:15pm UTC |
| Race Finish | June 25, 2012 8:49:43pm UTC |
| Outcome | No win (3 of 3) |
| 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") |