Drew (drewsmithworkman)

Race #2

View Pit Stop page for race #2 by drewsmithworkmanGhost race

View profile for Drew (drewsmithworkman)

Official speed 56.60 wpm (32.65 seconds elapsed during race)
Race Start September 7, 2023 4:01:13pm UTC
Race Finish September 7, 2023 4:01:46pm UTC
Outcome No win (2 of 2)
Opponents 1. blueninja11103 (67.59 wpm)
Accuracy 94.0%
Points 19.81
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")