View Pit Stop page for race #11 by zikk — Ghost race
Official speed | 41.56 wpm (44.47 seconds elapsed during race) |
---|---|
Race Start | August 28, 2015 3:40:05am UTC |
Race Finish | August 28, 2015 3:40:50am 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") |