Tushar (dark_thunder)

Race #8

View Pit Stop page for race #8 by dark_thunderGhost race

View profile for Tushar (dark_thunder)

Official speed 41.79 wpm (44.22 seconds elapsed during race)
Race Start March 6, 2024 5:56:20am UTC
Race Finish March 6, 2024 5:57:04am UTC
Outcome No win (2 of 3)
Accuracy 92.0%
Points 14.63
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")