View Pit Stop page for race #286 by neyool — Ghost race
View profile for Neyool (neyool)
Official speed | 49.65 wpm (37.22 seconds elapsed during race) |
---|---|
Race Start | May 23, 2025 11:54:14am UTC |
Race Finish | May 23, 2025 11:54:52am UTC |
Outcome | No win (2 of 3) |
Accuracy | 98.0% |
Points | 17.38 |
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") |