Alex (evil_alex)

Race #356

View Pit Stop page for race #356 by evil_alexGhost race

View profile for Alex (evil_alex)

Official speed 49.54 wpm (37.30 seconds elapsed during race)
Race Start February 26, 2025 2:42:48pm UTC
Race Finish February 26, 2025 2:43:25pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 17.34
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")