View Pit Stop page for race #62 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 65.16 wpm (28.36 seconds elapsed during race) |
---|---|
Race Start | July 3, 2025 11:24:00am UTC |
Race Finish | July 3, 2025 11:24:29am UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 22.81 |
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") |