View Pit Stop page for race #15 by p_a_w_m — Ghost race
View profile for Paweł (p_a_w_m)
Official speed | 37.39 wpm (49.42 seconds elapsed during race) |
---|---|
Race Start | April 17, 2013 4:06:43pm UTC |
Race Finish | April 17, 2013 4:07:32pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 89.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") |