cacto (cacto)

Race #3

View Pit Stop page for race #3 by cactoGhost race

View profile for cacto (cacto)

Official speed 43.39 wpm (42.59 seconds elapsed during race)
Race Start June 26, 2025 12:56:27am UTC
Race Finish June 26, 2025 12:57:09am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 15.19
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")