View Pit Stop page for race #77 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 61.57 wpm (30.01 seconds elapsed during race) |
---|---|
Race Start | July 8, 2025 6:41:54am UTC |
Race Finish | July 8, 2025 6:42:24am UTC |
Outcome | Win (1 of 3) |
Accuracy | 94.0% |
Points | 21.55 |
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") |