View Pit Stop page for race #22 by erratic_ked — Ghost race
View profile for fantastic banter (erratic_ked)
| Official speed | 76.82 wpm (24.06 seconds elapsed during race) |
|---|---|
| Race Start | May 27, 2017 10:16:57pm UTC |
| Race Finish | May 27, 2017 10:17:21pm UTC |
| Outcome | Win (1 of 2) |
| Accuracy | 88.0% |
| Points | 0.00 |
| 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") |