View Pit Stop page for race #1 by musoccer — Ghost race
View profile for Greg (musoccer)
Official speed | 60.49 wpm (30.55 seconds elapsed during race) |
---|---|
Race Start | October 18, 2011 8:03:57pm UTC |
Race Finish | October 18, 2011 8:04:28pm UTC |
Outcome | No win (1 of 1) |
Accuracy | 94.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") |