discord.gg/typeracer (landarian)

Race #241

View Pit Stop page for race #241 by landarianGhost race

View profile for discord.gg/typeracer (landarian)

Official speed 70.89 wpm (26.07 seconds elapsed during race)
Race Start March 16, 2021 11:09:43am UTC
Race Finish March 16, 2021 11:10:09am UTC
Outcome No win (3 of 3)
Accuracy 95.0%
Points 24.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")