View Pit Stop page for race #28 by jgary199 — Ghost race
View profile for J Gary (jgary199)
Official speed | 38.96 wpm (47.43 seconds elapsed during race) |
---|---|
Race Start | May 22, 2025 11:41:43pm UTC |
Race Finish | May 22, 2025 11:42:31pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 13.63 |
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") |