View Pit Stop page for race #2 by repmal — Ghost race
View profile for yayeet (repmal)
| Official speed | 62.22 wpm (29.70 seconds elapsed during race) |
|---|---|
| Race Start | November 17, 2018 8:53:23am UTC |
| Race Finish | November 17, 2018 8:53:53am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 95.0% |
| Points | 21.78 |
| 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") |