Superior (brother_v)

Race #1

View Pit Stop page for race #1 by brother_vGhost race

View profile for Superior (brother_v)

Official speed 54.23 wpm (34.08 seconds elapsed during race)
Race Start July 13, 2023 3:15:32am UTC
Race Finish July 13, 2023 3:16:06am UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 18.98
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")