View Pit Stop page for race #88 by jgary199 — Ghost race
View profile for J Gary (jgary199)
Official speed | 46.03 wpm (40.15 seconds elapsed during race) |
---|---|
Race Start | June 27, 2025 2:47:11am UTC |
Race Finish | June 27, 2025 2:47:51am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 16.11 |
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") |