Alex (evil_alex)

Race #300

View Pit Stop page for race #300 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 55.16 wpm (33.50 seconds elapsed during race)
Race Start February 7, 2025 5:01:15pm UTC
Race Finish February 7, 2025 5:01:48pm UTC
Outcome Win (1 of 2)
Opponents 2. maparkski (46.39 wpm)
Accuracy 96.0%
Points 19.30
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")