porfiriomarquez (porfiriomarquez)

Race #41

View Pit Stop page for race #41 by porfiriomarquezGhost race

View profile for porfiriomarquez (porfiriomarquez)

Official speed 16.37 wpm (112.89 seconds elapsed during race)
Race Start June 12, 2025 12:47:09pm UTC
Race Finish June 12, 2025 12:49:02pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 5.73
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")