View Pit Stop page for race #1 by jorfx — Ghost race
View profile for Jorge (jorfx)
Official speed | 23.47 wpm (78.74 seconds elapsed during race) |
---|---|
Race Start | May 26, 2011 5:19:24pm UTC |
Race Finish | May 26, 2011 5:20:43pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 85.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") |