View Pit Stop page for race #5 by kpraj — Ghost race
Official speed | 26.01 wpm (71.05 seconds elapsed during race) |
---|---|
Race Start | July 4, 2023 2:25:55am UTC |
Race Finish | July 4, 2023 2:27:07am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 9.10 |
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") |