View Pit Stop page for race #5 by aph0tic — Ghost race
| Official speed | 38.38 wpm (48.15 seconds elapsed during race) |
|---|---|
| Race Start | October 8, 2017 1:06:23am UTC |
| Race Finish | October 8, 2017 1:07:11am UTC |
| Outcome | No win (2 of 3) |
| Opponents |
1. cptbbq (87.80 wpm) |
| Accuracy | 92.0% |
| Points | 13.43 |
| 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") |