View Pit Stop page for race #8 by dobrogeanum — Ghost race
View profile for mugurel (dobrogeanum)
Official speed | 37.02 wpm (49.92 seconds elapsed during race) |
---|---|
Race Start | July 10, 2015 6:56:53pm UTC |
Race Finish | July 10, 2015 6:57:43pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 92.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") |