The don (photondestroyer)

Race #200

View Pit Stop page for race #200 by photondestroyerGhost race

View profile for The don (photondestroyer)

Official speed 64.99 wpm (28.44 seconds elapsed during race)
Race Start January 25, 2023 4:19:06am UTC
Race Finish January 25, 2023 4:19:34am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 22.75
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")