tstats[aucker] (aucker)

Race #30

View Pit Stop page for race #30 by auckerGhost race

View profile for tstats[aucker] (aucker)

Official speed 55.34 wpm (33.39 seconds elapsed during race)
Race Start July 7, 2023 3:49:07pm UTC
Race Finish July 7, 2023 3:49:41pm UTC
Outcome Win (1 of 3)
Accuracy 98.0%
Points 19.37
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")