View Pit Stop page for race #2 by kingfalcon — Ghost race
View profile for Turfa (kingfalcon)
Official speed | 51.75 wpm (35.71 seconds elapsed during race) |
---|---|
Race Start | June 29, 2013 11:15:52pm UTC |
Race Finish | June 29, 2013 11:16:27pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.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") |