View Pit Stop page for race #36 by alexey0 — Ghost race
View profile for Alex (alexey0)
Official speed | 32.96 wpm (56.07 seconds elapsed during race) |
---|---|
Race Start | September 22, 2014 9:31:18am UTC |
Race Finish | September 22, 2014 9:32:14am UTC |
Outcome | No win (2 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") |