View Pit Stop page for race #1 by polariskek — Ghost race
View profile for Caden (polariskek)
Official speed | 32.77 wpm (56.39 seconds elapsed during race) |
---|---|
Race Start | July 20, 2023 5:32:27am UTC |
Race Finish | July 20, 2023 5:33:23am UTC |
Outcome | Win (1 of 3) |
Accuracy | 90.0% |
Points | 11.47 |
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") |