View Pit Stop page for race #21 by prysp — Ghost race
View profile for ProRick2358Y (prysp)
Official speed | 46.74 wpm (39.54 seconds elapsed during race) |
---|---|
Race Start | July 7, 2025 7:48:04pm UTC |
Race Finish | July 7, 2025 7:48:43pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 16.36 |
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") |