Charlie (hobboloydn)

Race #61

View Pit Stop page for race #61 by hobboloydnGhost race

View profile for Charlie (hobboloydn)

Official speed 59.06 wpm (31.29 seconds elapsed during race)
Race Start April 15, 2025 10:01:52pm UTC
Race Finish April 15, 2025 10:02:23pm UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 20.67
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")