View Pit Stop page for race #8 by l1ght_0803 — Ghost race
View profile for L1ght (l1ght_0803)
Official speed | 28.85 wpm (64.06 seconds elapsed during race) |
---|---|
Race Start | July 25, 2025 12:32:12pm UTC |
Race Finish | July 25, 2025 12:33:16pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 92.0% |
Points | 10.10 |
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") |