View Pit Stop page for race #32 by alexey0 — Ghost race
View profile for Alex (alexey0)
Official speed | 37.62 wpm (49.12 seconds elapsed during race) |
---|---|
Race Start | September 21, 2014 7:06:02am UTC |
Race Finish | September 21, 2014 7:06:51am UTC |
Outcome | Win (1 of 3) |
Accuracy | 100.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") |