procrastinating (sticknleaf)

Race #21

View Pit Stop page for race #21 by sticknleafGhost race

View profile for procrastinating (sticknleaf)

Official speed 77.53 wpm (23.84 seconds elapsed during race)
Race Start October 27, 2025 11:42:43pm UTC
Race Finish October 27, 2025 11:43:07pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 27.14
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")