View Pit Stop page for race #1 by thymehog — Ghost race
View profile for Jeremy (thymehog)
| Official speed | 41.71 wpm (44.31 seconds elapsed during race) |
|---|---|
| Race Start | May 26, 2023 9:15:13pm UTC |
| Race Finish | May 26, 2023 9:15:57pm UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 99.0% |
| Points | 14.60 |
| 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") |