View Pit Stop page for race #2 by snurker — Ghost race
View profile for Snurker (snurker)
Official speed | 31.92 wpm (57.89 seconds elapsed during race) |
---|---|
Race Start | August 12, 2025 8:24:26pm UTC |
Race Finish | August 12, 2025 8:25:24pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 11.17 |
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") |