View Pit Stop page for race #10 by yehjunwei — Ghost race
View profile for Tony (yehjunwei)
Official speed | 48.13 wpm (38.40 seconds elapsed during race) |
---|---|
Race Start | April 13, 2013 2:17:33am UTC |
Race Finish | April 13, 2013 2:18:11am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.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") |