Polish (gtadragonball)

Race #5

View Pit Stop page for race #5 by gtadragonballGhost race

View profile for Polish (gtadragonball)

Official speed 45.18 wpm (40.90 seconds elapsed during race)
Race Start May 25, 2023 6:23:31pm UTC
Race Finish May 25, 2023 6:24:12pm UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 15.81
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")