JD (jigglyjd)

Race #19

View Pit Stop page for race #19 by jigglyjdGhost race

View profile for JD (jigglyjd)

Official speed 41.74 wpm (44.27 seconds elapsed during race)
Race Start July 13, 2023 2:48:58am UTC
Race Finish July 13, 2023 2:49:42am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 14.61
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")