Star Fox (anarchy_v)

Race #4

View Pit Stop page for race #4 by anarchy_vGhost race

View profile for Star Fox (anarchy_v)

Official speed 43.61 wpm (42.38 seconds elapsed during race)
Race Start May 30, 2023 1:28:20am UTC
Race Finish May 30, 2023 1:29:02am UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 15.26
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")