Charlie (hobboloydn)

Race #73

View Pit Stop page for race #73 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 52.34 wpm (35.31 seconds elapsed during race)
Race Start April 17, 2025 12:47:07pm UTC
Race Finish April 17, 2025 12:47:42pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 18.32
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")