Alex (evil_alex)

Race #392

View Pit Stop page for race #392 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 51.66 wpm (35.77 seconds elapsed during race)
Race Start March 18, 2025 5:21:07pm UTC
Race Finish March 18, 2025 5:21:43pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 18.08
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")