View Pit Stop page for race #13 by captain_boaty — Ghost race
View profile for BOAT (captain_boaty)
Official speed | 39.07 wpm (47.30 seconds elapsed during race) |
---|---|
Race Start | July 3, 2023 4:51:09am UTC |
Race Finish | July 3, 2023 4:51:57am UTC |
Outcome | No win (2 of 3) |
Accuracy | 92.0% |
Points | 13.67 |
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") |