View Pit Stop page for race #1 by theamplayer — Ghost race
View profile for Theo (theamplayer)
Official speed | 41.04 wpm (45.03 seconds elapsed during race) |
---|---|
Race Start | June 7, 2023 7:03:38am UTC |
Race Finish | June 7, 2023 7:04:23am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 14.37 |
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") |