Matthew (shorent)

Race #4

View Pit Stop page for race #4 by shorentGhost race

View profile for Matthew (shorent)

Official speed 13.99 wpm (132.09 seconds elapsed during race)
Race Start November 4, 2022 2:25:02pm UTC
Race Finish November 4, 2022 2:27:14pm UTC
Outcome No win (3 of 3)
Accuracy 87.0%
Points 4.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")