Charlie (hobboloydn)

Race #138

View Pit Stop page for race #138 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 56.10 wpm (32.94 seconds elapsed during race)
Race Start April 30, 2025 11:52:25am UTC
Race Finish April 30, 2025 11:52:58am UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 19.64
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")