View Pit Stop page for race #146 by neyool — Ghost race
View profile for Neyool (neyool)
Official speed | 52.98 wpm (34.88 seconds elapsed during race) |
---|---|
Race Start | May 15, 2025 6:33:03am UTC |
Race Finish | May 15, 2025 6:33:38am UTC |
Outcome | Win (1 of 3) |
Accuracy | 99.0% |
Points | 18.54 |
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") |