View Pit Stop page for race #105 by st4ff — Ghost race
View profile for Kramnik (st4ff)
Official speed | 57.67 wpm (32.04 seconds elapsed during race) |
---|---|
Race Start | July 23, 2025 1:55:32pm UTC |
Race Finish | July 23, 2025 1:56:04pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 95.0% |
Points | 20.18 |
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") |