View Pit Stop page for race #289 by maerih — Ghost race
View profile for maerih (maerih)
Official speed | 44.82 wpm (41.23 seconds elapsed during race) |
---|---|
Race Start | June 27, 2025 4:48:35am UTC |
Race Finish | June 27, 2025 4:49:16am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 15.69 |
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") |