View Pit Stop page for race #4 by rusherx — Ghost race
View profile for Fredrik (rusherx)
Official speed | 49.19 wpm (37.57 seconds elapsed during race) |
---|---|
Race Start | October 19, 2012 5:37:34pm UTC |
Race Finish | October 19, 2012 5:38:11pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. nilax (40.65 wpm) |
Accuracy | 96.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") |