View Pit Stop page for race #8 by remeditator — Ghost race
View profile for Jason (remeditator)
| Official speed | 48.25 wpm (38.30 seconds elapsed during race) |
|---|---|
| Race Start | February 3, 2018 8:23:56pm UTC |
| Race Finish | February 3, 2018 8:24:34pm UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 96.0% |
| Points | 16.89 |
| 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") |