View Pit Stop page for race #4 by douglassegatto — Ghost race
View profile for Douglas (douglassegatto)
Official speed | 64.88 wpm (28.48 seconds elapsed during race) |
---|---|
Race Start | December 21, 2012 4:48:59am UTC |
Race Finish | December 21, 2012 4:49:27am UTC |
Outcome | Win (1 of 2) |
Opponents |
2. ahmlmh (47.56 wpm) |
Accuracy | 92.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") |