jiy-workman (jiyworkman)

Race #11

View Pit Stop page for race #11 by jiyworkmanGhost race

View profile for jiy-workman (jiyworkman)

Official speed 35.65 wpm (51.84 seconds elapsed during race)
Race Start July 9, 2023 2:52:15am UTC
Race Finish July 9, 2023 2:53:07am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 12.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")