kron (kronscripter)

Race #1

View Pit Stop page for race #1 by kronscripterGhost race

View profile for kron (kronscripter)

Official speed 41.38 wpm (44.66 seconds elapsed during race)
Race Start June 1, 2023 9:38:32pm UTC
Race Finish June 1, 2023 9:39:16pm UTC
Outcome Win (1 of 3)
Accuracy 89.0%
Points 14.48
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")