New Keyboard Struggle (ragemodeon)

Race #49

View Pit Stop page for race #49 by ragemodeonGhost race

View profile for New Keyboard Struggle (ragemodeon)

Official speed 67.17 wpm (27.51 seconds elapsed during race)
Race Start July 29, 2022 7:48:19am UTC
Race Finish July 29, 2022 7:48:47am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 23.51
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")