View Pit Stop page for race #2 by remeditator — Ghost race
View profile for Jason (remeditator)
| Official speed | 52.37 wpm (35.29 seconds elapsed during race) |
|---|---|
| Race Start | February 2, 2018 10:32:50pm UTC |
| Race Finish | February 2, 2018 10:33:25pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 97.0% |
| Points | 18.33 |
| 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") |