MattB (mattrichardb)

Race #1

View Pit Stop page for race #1 by mattrichardbGhost race

View profile for MattB (mattrichardb)

Official speed 38.78 wpm (47.65 seconds elapsed during race)
Race Start May 31, 2023 9:19:30pm UTC
Race Finish May 31, 2023 9:20:18pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 13.57
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")