View Pit Stop page for race #8 by typeracerd — Ghost race
View profile for Bob (typeracerd)
Official speed | 40.08 wpm (46.11 seconds elapsed during race) |
---|---|
Race Start | April 19, 2016 6:51:57pm UTC |
Race Finish | April 19, 2016 6:52:43pm UTC |
Outcome | Win (1 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") |