View Pit Stop page for race #1 by mikerubby — Ghost race
View profile for 🌠Rubby🌠(mikerubby)
| Official speed | 38.88 wpm (47.53 seconds elapsed during race) |
|---|---|
| Race Start | February 23, 2018 6:49:17am UTC |
| Race Finish | February 23, 2018 6:50:05am UTC |
| Outcome | No win (1 of 1) |
| Accuracy | 95.0% |
| Points | 13.61 |
| 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") |