View Pit Stop page for race #1 by jilstrom — Ghost race
View profile for jilstrom (jilstrom)
| Official speed | 35.14 wpm (52.59 seconds elapsed during race) |
|---|---|
| Race Start | December 7, 2020 8:36:32am UTC |
| Race Finish | December 7, 2020 8:37:25am UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 94.0% |
| Points | 12.30 |
| 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") |