Muffins the Cat (muffins_the_cat)

Race #1

View Pit Stop page for race #1 by muffins_the_catGhost race

View profile for Muffins the Cat (muffins_the_cat)

Official speed 39.13 wpm (47.23 seconds elapsed during race)
Race Start June 21, 2023 1:46:29am UTC
Race Finish June 21, 2023 1:47:16am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 13.70
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")