View Pit Stop page for race #7 by alexey0 — Ghost race
View profile for Alex (alexey0)
Official speed | 29.47 wpm (62.71 seconds elapsed during race) |
---|---|
Race Start | September 8, 2014 9:12:49am UTC |
Race Finish | September 8, 2014 9:13:51am UTC |
Outcome | No win (2 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") |