View Pit Stop page for race #1 by supr3m3k1mch1 — Ghost race
View profile for Andrew (supr3m3k1mch1)
| Official speed | 68.47 wpm (26.99 seconds elapsed during race) |
|---|---|
| Race Start | March 18, 2011 9:23:23pm UTC |
| Race Finish | March 18, 2011 9:23:50pm UTC |
| Outcome | Win (1 of 3) |
| Opponents |
2. glimlol (41.55 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") |