Charlie (hobboloydn)

Race #16

View Pit Stop page for race #16 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 53.43 wpm (34.59 seconds elapsed during race)
Race Start April 8, 2025 7:56:21pm UTC
Race Finish April 8, 2025 7:56:56pm UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 18.70
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")