View Pit Stop page for race #5 by majstor_cipa — Ghost race
View profile for Puškarić (majstor_cipa)
| Official speed | 56.57 wpm (32.67 seconds elapsed during race) |
|---|---|
| Race Start | July 1, 2013 4:49:02pm UTC |
| Race Finish | July 1, 2013 4:49:34pm UTC |
| Outcome | Win (1 of 2) |
| Opponents |
2. athul (55.17 wpm) |
| Accuracy | 85.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") |