. (ahhhhhhhhhhhhhhhhhh)

Race #10

View Pit Stop page for race #10 by ahhhhhhhhhhhhhhhhhhGhost race

View profile for . (ahhhhhhhhhhhhhhhhhh)

Official speed 37.23 wpm (49.64 seconds elapsed during race)
Race Start May 31, 2023 10:00:26am UTC
Race Finish May 31, 2023 10:01:15am UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 13.03
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")