patevis (whimp)

Race #14

View Pit Stop page for race #14 by whimpGhost race

View profile for patevis (whimp)

Official speed 45.44 wpm (40.67 seconds elapsed during race)
Race Start June 17, 2023 6:34:56pm UTC
Race Finish June 17, 2023 6:35:37pm UTC
Outcome No win (3 of 3)
Accuracy 91.0%
Points 15.90
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")