Alex (evil_alex)

Race #439

View Pit Stop page for race #439 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 51.33 wpm (36.00 seconds elapsed during race)
Race Start April 2, 2025 12:27:31pm UTC
Race Finish April 2, 2025 12:28:07pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 17.97
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")