View Pit Stop page for race #1 by deltawk — Ghost race
View profile for William (deltawk)
Official speed | 64.18 wpm (28.79 seconds elapsed during race) |
---|---|
Race Start | March 26, 2015 8:26:00pm UTC |
Race Finish | March 26, 2015 8:26:28pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.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") |