Ben (banjamaan)

Race #1

View Pit Stop page for race #1 by banjamaanGhost race

View profile for Ben (banjamaan)

Official speed 22.37 wpm (82.61 seconds elapsed during race)
Race Start July 8, 2023 2:22:22pm UTC
Race Finish July 8, 2023 2:23:45pm UTC
Outcome No win (1 of 1)
Accuracy 90.0%
Points 7.83
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")