View Pit Stop page for race #56 by leonhardeuler — Ghost race
View profile for error (leonhardeuler)
Official speed | 56.14 wpm (32.92 seconds elapsed during race) |
---|---|
Race Start | April 2, 2012 10:45:34pm UTC |
Race Finish | April 2, 2012 10:46:07pm 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") |