View Pit Stop page for race #2 by s4njul — Ghost race
View profile for sanjul (s4njul)
Official speed | 53.65 wpm (34.45 seconds elapsed during race) |
---|---|
Race Start | February 9, 2012 5:21:38am UTC |
Race Finish | February 9, 2012 5:22:13am 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") |