🍉🍒stand with palestine🍄🍌(❤´艸`❤) (amnii)

Race #63

View Pit Stop page for race #63 by amniiGhost race

View profile for 🍉🍒stand with palestine🍄🍌(❤´艸`❤) (amnii)

Official speed 51.25 wpm (36.06 seconds elapsed during race)
Race Start December 16, 2022 4:22:38am UTC
Race Finish December 16, 2022 4:23:14am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 17.94
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")