View Pit Stop page for race #1 by zgjim — Ghost race
View profile for Zgjim (zgjim)
| Official speed | 73.09 wpm (25.28 seconds elapsed during race) |
|---|---|
| Race Start | February 3, 2011 9:48:43am UTC |
| Race Finish | February 3, 2011 9:49:08am UTC |
| Outcome | No win (1 of 1) |
| 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") |