View Pit Stop page for race #1 by derreavus — Ghost race
View profile for Eric (derreavus)
| Official speed | 29.92 wpm (61.76 seconds elapsed during race) |
|---|---|
| Race Start | December 8, 2020 12:32:22am UTC |
| Race Finish | December 8, 2020 12:33:24am UTC |
| Outcome | No win (2 of 3) |
| Accuracy | 92.0% |
| Points | 10.47 |
| 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") |