View Pit Stop page for race #214 by hobboloydn — Ghost race
View profile for Charlie (hobboloydn)
Official speed | 65.02 wpm (28.42 seconds elapsed during race) |
---|---|
Race Start | May 9, 2025 5:41:04pm UTC |
Race Finish | May 9, 2025 5:41:32pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 22.76 |
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") |