notpvs (notpvs)

Race #15

View Pit Stop page for race #15 by notpvsGhost race

View profile for notpvs (notpvs)

Official speed 57.13 wpm (32.35 seconds elapsed during race)
Race Start April 25, 2025 11:57:22am UTC
Race Finish April 25, 2025 11:57:54am UTC
Outcome Win (1 of 3)
Accuracy 93.0%
Points 19.99
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")