View Pit Stop page for race #9 by manbearto — Ghost race
View profile for Joshua (manbearto)
Official speed | 31.58 wpm (58.52 seconds elapsed during race) |
---|---|
Race Start | January 3, 2023 5:26:33am UTC |
Race Finish | January 3, 2023 5:27:32am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 11.05 |
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") |