noint (noint)

Race #2

View Pit Stop page for race #2 by nointGhost race

View profile for noint (noint)

Official speed 54.74 wpm (33.76 seconds elapsed during race)
Race Start June 27, 2023 4:36:45pm UTC
Race Finish June 27, 2023 4:37:18pm UTC
Outcome Win (1 of 2)
Accuracy 95.0%
Points 19.16
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")