View Pit Stop page for race #56 by kent_type — Ghost race
View profile for KEN (kent_type)
Official speed | 33.36 wpm (55.40 seconds elapsed during race) |
---|---|
Race Start | August 5, 2025 8:38:40pm UTC |
Race Finish | August 5, 2025 8:39:35pm UTC |
Outcome | No win (3 of 3) |
Accuracy | 93.0% |
Points | 11.68 |
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") |