View Pit Stop page for race #56 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 59.42 wpm (31.10 seconds elapsed during race) |
---|---|
Race Start | July 3, 2025 11:15:54am UTC |
Race Finish | July 3, 2025 11:16:25am UTC |
Outcome | Win (1 of 3) |
Accuracy | 95.0% |
Points | 20.80 |
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") |