View Pit Stop page for race #89 by gafan_dr34ml3nd — Ghost race
View profile for GAfan(dr34ml3nd) (gafan_dr34ml3nd)
Official speed | 36.46 wpm (50.69 seconds elapsed during race) |
---|---|
Race Start | June 23, 2025 1:44:26pm UTC |
Race Finish | June 23, 2025 1:45:17pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 91.0% |
Points | 12.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") |