punit (thakelatyper)

Race #43

View Pit Stop page for race #43 by thakelatyperGhost race

View profile for punit (thakelatyper)

Official speed 39.42 wpm (46.88 seconds elapsed during race)
Race Start July 26, 2022 9:36:13am UTC
Race Finish July 26, 2022 9:37:00am UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 13.80
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")