E (the_fast_one)

Race #27

View Pit Stop page for race #27 by the_fast_oneGhost race

View profile for E (the_fast_one)

Official speed 45.27 wpm (40.82 seconds elapsed during race)
Race Start June 25, 2023 5:17:39pm UTC
Race Finish June 25, 2023 5:18:20pm UTC
Outcome Win (1 of 3)
Accuracy 96.0%
Points 15.84
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")