View Pit Stop page for race #35 by danyong — Ghost race
View profile for Daniel (danyong)
Official speed | 49.42 wpm (37.39 seconds elapsed during race) |
---|---|
Race Start | June 2, 2025 9:10:38am UTC |
Race Finish | June 2, 2025 9:11:16am UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 17.30 |
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") |