harshit (harshit712)

Race #59

View Pit Stop page for race #59 by harshit712Ghost race

View profile for harshit (harshit712)

Official speed 61.37 wpm (30.11 seconds elapsed during race)
Race Start April 14, 2023 7:55:26pm UTC
Race Finish April 14, 2023 7:55:56pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 21.48
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")