View Pit Stop page for race #14 by notpvs — Ghost race
View profile for notpvs (notpvs)
Official speed | 54.63 wpm (33.83 seconds elapsed during race) |
---|---|
Race Start | April 25, 2025 11:56:32am UTC |
Race Finish | April 25, 2025 11:57:05am UTC |
Outcome | No win (2 of 3) |
Accuracy | 93.0% |
Points | 19.12 |
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") |