View Pit Stop page for race #45 by prysp — Ghost race
View profile for ProRick2358Y (prysp)
Official speed | 45.78 wpm (40.37 seconds elapsed during race) |
---|---|
Race Start | July 11, 2025 8:13:20pm UTC |
Race Finish | July 11, 2025 8:14:01pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 16.02 |
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") |