porfiriomarquez (porfiriomarquez)

Race #38

View Pit Stop page for race #38 by porfiriomarquezGhost race

View profile for porfiriomarquez (porfiriomarquez)

Official speed 17.80 wpm (103.82 seconds elapsed during race)
Race Start June 11, 2025 6:51:59pm UTC
Race Finish June 11, 2025 6:53:43pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 6.23
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")