View Pit Stop page for race #2 by mpgo13 — Ghost race
View profile for Martin (mpgo13)
| Official speed | 58.51 wpm (31.58 seconds elapsed during race) |
|---|---|
| Race Start | April 30, 2011 8:42:50pm UTC |
| Race Finish | April 30, 2011 8:43:21pm UTC |
| Outcome | No win (2 of 3) |
| Opponents |
1. jo5ef (75.54 wpm) |
| 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") |