kleeon (kleeon)

Race #4

View Pit Stop page for race #4 by kleeonGhost race

View profile for kleeon (kleeon)

Official speed 31.46 wpm (58.74 seconds elapsed during race)
Race Start July 29, 2023 3:08:50am UTC
Race Finish July 29, 2023 3:09:49am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 11.01
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")