. (ahhhhhhhhhhhhhhhhhh)

Race #6

View Pit Stop page for race #6 by ahhhhhhhhhhhhhhhhhhGhost race

View profile for . (ahhhhhhhhhhhhhhhhhh)

Official speed 34.14 wpm (54.13 seconds elapsed during race)
Race Start May 30, 2023 8:05:26pm UTC
Race Finish May 30, 2023 8:06:20pm UTC
Outcome No win (3 of 3)
Accuracy 92.0%
Points 11.95
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")