Aren (tl8xv)

Race #44

View Pit Stop page for race #44 by tl8xvGhost race

View profile for Aren (tl8xv)

Official speed 75.62 wpm (24.44 seconds elapsed during race)
Race Start May 23, 2023 12:34:05am UTC
Race Finish May 23, 2023 12:34:29am UTC
Outcome No win (2 of 3)
Accuracy 98.0%
Points 26.47
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")