Aren (tl8xv)

Race #67

View Pit Stop page for race #67 by tl8xvGhost race

View profile for Aren (tl8xv)

Official speed 66.93 wpm (27.61 seconds elapsed during race)
Race Start May 23, 2023 3:21:27pm UTC
Race Finish May 23, 2023 3:21:54pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 23.42
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")