Sporak (cheeseballoon)

Race #5

View Pit Stop page for race #5 by cheeseballoonGhost race

View profile for Sporak (cheeseballoon)

Official speed 36.06 wpm (51.25 seconds elapsed during race)
Race Start July 25, 2023 8:13:43am UTC
Race Finish July 25, 2023 8:14:34am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 12.62
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")