View Pit Stop page for race #6 by london_enjoyer — Ghost race
View profile for Jackson (london_enjoyer)
Official speed | 70.89 wpm (26.07 seconds elapsed during race) |
---|---|
Race Start | July 22, 2023 11:51:21am UTC |
Race Finish | July 22, 2023 11:51:47am UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 24.81 |
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") |