View Pit Stop page for race #2 by tem_per — Ghost race
View profile for XIN (tem_per)
Official speed | 41.01 wpm (45.06 seconds elapsed during race) |
---|---|
Race Start | May 22, 2025 3:41:05am UTC |
Race Finish | May 22, 2025 3:41:50am UTC |
Outcome | No win (2 of 3) |
Accuracy | 97.0% |
Points | 14.35 |
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") |