View Pit Stop page for race #10 by benjkcw — Ghost race
View profile for Ben (benjkcw)
| Official speed | 74.12 wpm (24.93 seconds elapsed during race) |
|---|---|
| Race Start | October 6, 2017 11:41:15pm UTC |
| Race Finish | October 6, 2017 11:41:40pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 97.0% |
| Points | 25.94 |
| 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") |