M (mostafam)

Race #128

View Pit Stop page for race #128 by mostafamGhost race

View profile for M (mostafam)

Official speed 34.74 wpm (53.20 seconds elapsed during race)
Race Start June 9, 2022 4:03:17am UTC
Race Finish June 9, 2022 4:04:10am UTC
Outcome No win (3 of 3)
Accuracy 97.0%
Points 12.16
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")