maerih (maerih)

Race #346

View Pit Stop page for race #346 by maerihGhost race

View profile for maerih (maerih)

Official speed 45.02 wpm (41.05 seconds elapsed during race)
Race Start July 26, 2025 6:16:56am UTC
Race Finish July 26, 2025 6:17:37am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 15.76
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")