Himanshu (himanharsh)

Race #2

View Pit Stop page for race #2 by himanharshGhost race

View profile for Himanshu (himanharsh)

Official speed 39.02 wpm (47.36 seconds elapsed during race)
Race Start July 20, 2023 7:19:55am UTC
Race Finish July 20, 2023 7:20:42am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 13.66
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")