View Pit Stop page for race #1 by paulgalea — Ghost race
View profile for Paul (paulgalea)
Official speed | 30.73 wpm (60.14 seconds elapsed during race) |
---|---|
Race Start | March 2, 2012 5:56:54am UTC |
Race Finish | March 2, 2012 5:57:54am UTC |
Outcome | No win (3 of 3) |
Accuracy | 90.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") |