View Pit Stop page for race #1 by techinologic — Ghost race
View profile for Dukenbergs (techinologic)
Official speed | 30.68 wpm (60.23 seconds elapsed during race) |
---|---|
Race Start | June 1, 2023 4:09:46am UTC |
Race Finish | June 1, 2023 4:10:46am UTC |
Outcome | No win (3 of 3) |
Accuracy | 94.0% |
Points | 10.74 |
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") |