View Pit Stop page for race #11 by beppi — Ghost race
View profile for shrek (beppi)
Official speed | 41.84 wpm (44.17 seconds elapsed during race) |
---|---|
Race Start | July 7, 2025 7:07:06am UTC |
Race Finish | July 7, 2025 7:07:50am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 14.65 |
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") |