View Pit Stop page for race #2 by tedm — Ghost race
View profile for Ted [Dvorak] (tedm)
Official speed | 40.27 wpm (45.89 seconds elapsed during race) |
---|---|
Race Start | February 6, 2011 2:48:58am UTC |
Race Finish | February 6, 2011 2:49:43am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. slow_joe (26.49 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") |