View Pit Stop page for race #7 by its_a_new_beggining — Ghost race
View profile for Metal Man (its_a_new_beggining)
Official speed | 40.78 wpm (45.32 seconds elapsed during race) |
---|---|
Race Start | August 13, 2011 7:20:48am UTC |
Race Finish | August 13, 2011 7:21:33am UTC |
Outcome | Win (1 of 2) |
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") |