View Pit Stop page for race #1 by rafandrews — Ghost race
View profile for Rafael (rafandrews)
Official speed | 51.43 wpm (35.93 seconds elapsed during race) |
---|---|
Race Start | May 31, 2013 4:14:04pm UTC |
Race Finish | May 31, 2013 4:14:39pm 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") |