View Pit Stop page for race #1 by kodey_kayla — Ghost race
View profile for Kodey-Kayla (kodey_kayla)
| Official speed | 45.19 wpm (40.89 seconds elapsed during race) |
|---|---|
| Race Start | June 13, 2023 6:50:52am UTC |
| Race Finish | June 13, 2023 6:51:33am UTC |
| Outcome | Win (1 of 3) |
| Accuracy | 93.0% |
| Points | 15.82 |
| 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") |