Tairkhan (tairkhan)

Race #2

View Pit Stop page for race #2 by tairkhanGhost race

View profile for Tairkhan (tairkhan)

Official speed 35.76 wpm (51.68 seconds elapsed during race)
Race Start August 11, 2023 11:21:37am UTC
Race Finish August 11, 2023 11:22:29am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 12.52
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")