View Pit Stop page for race #8 by benjkcw — Ghost race
View profile for Ben (benjkcw)
Official speed | 58.96 wpm (31.34 seconds elapsed during race) |
---|---|
Race Start | June 13, 2015 6:08:16pm UTC |
Race Finish | June 13, 2015 6:08:48pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 91.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") |