View Pit Stop page for race #2 by mlhhsid — Ghost race
View profile for mlhhsid (mlhhsid)
| Official speed | 51.77 wpm (35.70 seconds elapsed during race) |
|---|---|
| Race Start | March 25, 2021 8:46:55pm UTC |
| Race Finish | March 25, 2021 8:47:31pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 96.0% |
| Points | 18.12 |
| 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") |