MattTheDev (mdscranton)

Race #1

View Pit Stop page for race #1 by mdscrantonGhost race

View profile for MattTheDev (mdscranton)

Official speed 63.10 wpm (29.29 seconds elapsed during race)
Race Start July 16, 2023 11:35:58pm UTC
Race Finish July 16, 2023 11:36:27pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 22.09
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")