discord.gg/typeracer (landarian)

Race #242

View Pit Stop page for race #242 by landarianGhost race

View profile for discord.gg/typeracer (landarian)

Official speed 88.94 wpm (20.78 seconds elapsed during race)
Race Start March 16, 2021 11:12:01am UTC
Race Finish March 16, 2021 11:12:22am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 31.13
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")