View Pit Stop page for race #2 by rahularctic — Ghost race
View profile for rahul (rahularctic)
Official speed | 26.98 wpm (68.50 seconds elapsed during race) |
---|---|
Race Start | February 26, 2013 6:08:55pm UTC |
Race Finish | February 26, 2013 6:10:03pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. bugattiveyronsk (24.79 wpm) |
Accuracy | 88.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") |