View Pit Stop page for race #11 by hymiscellany — Ghost race
View profile for poopoo peepee (hymiscellany)
| Official speed | 54.92 wpm (33.65 seconds elapsed during race) |
|---|---|
| Race Start | December 29, 2017 10:14:29pm UTC |
| Race Finish | December 29, 2017 10:15:02pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 92.0% |
| Points | 19.22 |
| 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") |