FREE PALESTINE discord#unsalek (mustafa_reda)

Race #27

View Pit Stop page for race #27 by mustafa_redaGhost race

View profile for FREE PALESTINE discord#unsalek (mustafa_reda)

Official speed 59.08 wpm (31.28 seconds elapsed during race)
Race Start June 19, 2023 11:59:24pm UTC
Race Finish June 19, 2023 11:59:55pm UTC
Outcome Win (1 of 2)
Opponents 2. deadinside_101_2 (40.45 wpm)
Accuracy 92.0%
Points 20.68
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")