Alex (evil_alex)

Race #333

View Pit Stop page for race #333 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 54.70 wpm (33.78 seconds elapsed during race)
Race Start February 19, 2025 8:05:46pm UTC
Race Finish February 19, 2025 8:06:20pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 19.15
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")