View Pit Stop page for race #3 by just_avraige — Ghost race
View profile for Zlow (just_avraige)
Official speed | 20.45 wpm (90.37 seconds elapsed during race) |
---|---|
Race Start | March 20, 2022 1:30:52pm UTC |
Race Finish | March 20, 2022 1:32:22pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 7.16 |
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") |