Mikhail (mayham92)

Race #914

View Pit Stop page for race #914 by mayham92Ghost race

View profile for Mikhail (mayham92)

Official speed 68.75 wpm (26.88 seconds elapsed during race)
Race Start December 8, 2022 10:04:01am UTC
Race Finish December 8, 2022 10:04:28am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 24.06
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")