View Pit Stop page for race #188 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 54.35 wpm (34.00 seconds elapsed during race) |
---|---|
Race Start | May 3, 2025 9:55:23pm UTC |
Race Finish | May 3, 2025 9:55:57pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 19.02 |
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") |