Charlie (hobboloydn)

Race #36

View Pit Stop page for race #36 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 55.22 wpm (33.47 seconds elapsed during race)
Race Start April 14, 2025 3:13:20pm UTC
Race Finish April 14, 2025 3:13:53pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 19.33
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")