Charlie (hobboloydn)

Race #31

View Pit Stop page for race #31 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 50.60 wpm (36.52 seconds elapsed during race)
Race Start April 12, 2025 4:21:05pm UTC
Race Finish April 12, 2025 4:21:42pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 17.71
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")