View Pit Stop page for race #8 by moarjank — Ghost race
View profile for MoarJank (moarjank)
| Official speed | 51.38 wpm (35.97 seconds elapsed during race) |
|---|---|
| Race Start | April 2, 2023 6:53:44pm UTC |
| Race Finish | April 2, 2023 6:54:20pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 99.0% |
| Points | 17.98 |
| 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") |