Charlie (hobboloydn)

Race #212

View Pit Stop page for race #212 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 52.39 wpm (35.27 seconds elapsed during race)
Race Start May 9, 2025 5:38:26pm UTC
Race Finish May 9, 2025 5:39:01pm UTC
Outcome No win (2 of 4)
Accuracy 93.0%
Points 18.34
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")