View Pit Stop page for race #8 by k6e6n6n6y — Ghost race
View profile for kK6e6n6n6y (k6e6n6n6y)
Official speed | 31.92 wpm (57.89 seconds elapsed during race) |
---|---|
Race Start | August 13, 2012 10:04:26pm UTC |
Race Finish | August 13, 2012 10:05:24pm UTC |
Outcome | Win (1 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") |