View Pit Stop page for race #362 by neyool — Ghost race
View profile for Neyool (neyool)
Official speed | 43.09 wpm (42.89 seconds elapsed during race) |
---|---|
Race Start | June 6, 2025 7:56:30am UTC |
Race Finish | June 6, 2025 7:57:12am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 15.08 |
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") |