Per (dubgeiser)

Race #54

View Pit Stop page for race #54 by dubgeiserGhost race

View profile for Per (dubgeiser)

Official speed 50.01 wpm (36.95 seconds elapsed during race)
Race Start February 7, 2024 3:25:18pm UTC
Race Finish February 7, 2024 3:25:55pm UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 17.50
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")