View Pit Stop page for race #233 by hawk691 — Ghost race
View profile for Marko (hawk691)
Official speed | 26.85 wpm (68.83 seconds elapsed during race) |
---|---|
Race Start | July 16, 2025 1:42:33pm UTC |
Race Finish | July 16, 2025 1:43:41pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 9.40 |
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") |