View Pit Stop page for race #6 by olaridv — Ghost race
View profile for olari (olaridv)
| Official speed | 71.93 wpm (25.69 seconds elapsed during race) |
|---|---|
| Race Start | October 9, 2019 7:14:32am UTC |
| Race Finish | October 9, 2019 7:14:58am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 99.0% |
| Points | 25.18 |
| 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") |