Abby (aeheffington)

Race #4

View Pit Stop page for race #4 by aeheffingtonGhost race

View profile for Abby (aeheffington)

Official speed 57.42 wpm (32.18 seconds elapsed during race)
Race Start February 9, 2023 1:03:32am UTC
Race Finish February 9, 2023 1:04:04am UTC
Outcome No win (2 of 2)
Opponents 1. wayrus (58.12 wpm)
Accuracy 97.0%
Points 20.10
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")