Charlie (hobboloydn)

Race #66

View Pit Stop page for race #66 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 45.06 wpm (41.01 seconds elapsed during race)
Race Start April 16, 2025 6:33:04pm UTC
Race Finish April 16, 2025 6:33:45pm UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 15.77
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")