View Pit Stop page for race #1 by xeomorpher — Ghost race
View profile for Francis (xeomorpher)
Official speed | 30.62 wpm (60.35 seconds elapsed during race) |
---|---|
Race Start | December 28, 2013 12:11:14am UTC |
Race Finish | December 28, 2013 12:12:14am UTC |
Outcome | Win (1 of 2) |
Accuracy | 88.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") |