Brandon (brandonbrandon123)

Race #1

View Pit Stop page for race #1 by brandonbrandon123Ghost race

View profile for Brandon (brandonbrandon123)

Official speed 29.32 wpm (63.03 seconds elapsed during race)
Race Start June 22, 2023 12:45:16pm UTC
Race Finish June 22, 2023 12:46:19pm UTC
Outcome No win (2 of 2)
Accuracy 92.0%
Points 10.26
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")