Brian Kip (briankip1)

Race #19

View Pit Stop page for race #19 by briankip1Ghost race

View profile for Brian Kip (briankip1)

Official speed 22.82 wpm (80.98 seconds elapsed during race)
Race Start August 9, 2023 10:16:45pm UTC
Race Finish August 9, 2023 10:18:06pm UTC
Outcome No win (3 of 3)
Accuracy 90.0%
Points 7.99
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")