View Pit Stop page for race #56 by jgary199 — Ghost race
View profile for J Gary (jgary199)
Official speed | 44.11 wpm (41.90 seconds elapsed during race) |
---|---|
Race Start | May 29, 2025 2:05:09am UTC |
Race Finish | May 29, 2025 2:05:51am UTC |
Outcome | Win (1 of 3) |
Accuracy | 93.0% |
Points | 15.44 |
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") |