View Pit Stop page for race #23 by alexey0 — Ghost race
View profile for Alex (alexey0)
Official speed | 29.80 wpm (62.01 seconds elapsed during race) |
---|---|
Race Start | September 20, 2014 2:45:40pm UTC |
Race Finish | September 20, 2014 2:46:42pm UTC |
Outcome | No win (3 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") |