View Pit Stop page for race #3 by jagonu — Ghost race
View profile for Delta (jagonu)
Official speed | 72.11 wpm (25.63 seconds elapsed during race) |
---|---|
Race Start | May 31, 2025 5:50:34pm UTC |
Race Finish | May 31, 2025 5:51:00pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 25.24 |
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") |