View Pit Stop page for race #2 by kaspertypes — Ghost race
View profile for Kasper (kaspertypes)
Official speed | 87.76 wpm (21.06 seconds elapsed during race) |
---|---|
Race Start | May 29, 2023 5:58:17pm UTC |
Race Finish | May 29, 2023 5:58:38pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 30.72 |
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") |