3isa 7ayaty (yal3ab)

Race #2

View Pit Stop page for race #2 by yal3abGhost race

View profile for 3isa 7ayaty (yal3ab)

Official speed 38.26 wpm (48.30 seconds elapsed during race)
Race Start May 28, 2023 3:53:21pm UTC
Race Finish May 28, 2023 3:54:09pm UTC
Outcome Win (1 of 3)
Accuracy 91.0%
Points 13.39
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")