View Pit Stop page for race #121 by dudiellon — Ghost race
View profile for @dudiellon (dudiellon)
Official speed | 50.22 wpm (36.80 seconds elapsed during race) |
---|---|
Race Start | July 4, 2011 1:59:24am UTC |
Race Finish | July 4, 2011 2:00:01am 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") |