View Pit Stop page for race #4 by mmmooore — Ghost race
View profile for Marshall (mmmooore)
| Official speed | 64.30 wpm (28.74 seconds elapsed during race) |
|---|---|
| Race Start | December 11, 2019 3:05:56am UTC |
| Race Finish | December 11, 2019 3:06:25am UTC |
| Outcome | Win (1 of 2) |
| Opponents |
2. blendyz (46.00 wpm) |
| Accuracy | 96.0% |
| Points | 22.50 |
| 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") |