View Pit Stop page for race #1 by tortual_speed — Ghost race
View profile for tortual_speed (tortual_speed)
| Official speed | 15.96 wpm (115.79 seconds elapsed during race) |
|---|---|
| Race Start | May 22, 2025 6:11:05pm UTC |
| Race Finish | May 22, 2025 6:13:01pm UTC |
| Outcome | No win (3 of 3) |
| Accuracy | 90.0% |
| Points | 5.58 |
| 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") |