kublaikhan (uncarvedblock)

Race #2

View Pit Stop page for race #2 by uncarvedblockGhost race

View profile for kublaikhan (uncarvedblock)

Official speed 41.05 wpm (45.02 seconds elapsed during race)
Race Start July 17, 2023 5:01:45pm UTC
Race Finish July 17, 2023 5:02:30pm UTC
Outcome No win (1 of 1)
Accuracy 96.0%
Points 14.37
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")