View Pit Stop page for race #11 by pimplepopper2015 — Ghost race
View profile for Kaseolin (pimplepopper2015)
Official speed | 58.49 wpm (31.60 seconds elapsed during race) |
---|---|
Race Start | April 24, 2025 11:15:06am UTC |
Race Finish | April 24, 2025 11:15:37am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 20.47 |
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") |