View Pit Stop page for race #4 by infinitusone — Ghost race
View profile for infinitus (infinitusone)
| Official speed | 27.95 wpm (66.12 seconds elapsed during race) |
|---|---|
| Race Start | May 31, 2011 8:10:56pm UTC |
| Race Finish | May 31, 2011 8:12:02pm UTC |
| Outcome | Win (1 of 2) |
| Opponents |
2. chopninjabob (17.32 wpm) |
| Accuracy | 96.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") |