Leonidas (leonidas_the_great)

Race #2

View Pit Stop page for race #2 by leonidas_the_greatGhost race

View profile for Leonidas (leonidas_the_great)

Official speed 35.37 wpm (52.25 seconds elapsed during race)
Race Start September 23, 2024 2:51:18am UTC
Race Finish September 23, 2024 2:52:11am UTC
Outcome No win (2 of 2)
Opponents 1. ayaseshu (44.50 wpm)
Accuracy 96.0%
Points 12.38
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")