Lui (lui01)

Race #10

View Pit Stop page for race #10 by lui01Ghost race

View profile for Lui (lui01)

Official speed 46.17 wpm (40.03 seconds elapsed during race)
Race Start November 4, 2025 1:49:34am UTC
Race Finish November 4, 2025 1:50:15am UTC
Outcome No win (2 of 3)
Accuracy 96.0%
Points 16.16
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")