Ryan (firestarshadow)

Race #3

View Pit Stop page for race #3 by firestarshadowGhost race

View profile for Ryan (firestarshadow)

Official speed 32.66 wpm (56.58 seconds elapsed during race)
Race Start August 22, 2023 3:49:40am UTC
Race Finish August 22, 2023 3:50:36am UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 11.43
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")