bait kush (bait_kush)

Race #1

View Pit Stop page for race #1 by bait_kushGhost race

View profile for bait kush (bait_kush)

Official speed 36.55 wpm (50.56 seconds elapsed during race)
Race Start June 19, 2023 7:27:45pm UTC
Race Finish June 19, 2023 7:28:36pm UTC
Outcome No win (2 of 3)
Accuracy 93.0%
Points 12.79
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")