View Pit Stop page for race #71 by jgary199 — Ghost race
View profile for J Gary (jgary199)
Official speed | 36.28 wpm (50.94 seconds elapsed during race) |
---|---|
Race Start | June 26, 2025 12:03:43am UTC |
Race Finish | June 26, 2025 12:04:34am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 12.70 |
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") |