Vincent (rubixon)

Race #7

View Pit Stop page for race #7 by rubixonGhost race

View profile for Vincent (rubixon)

Official speed 37.46 wpm (49.33 seconds elapsed during race)
Race Start September 3, 2023 5:02:31pm UTC
Race Finish September 3, 2023 5:03:21pm UTC
Outcome Win (1 of 3)
Accuracy 95.0%
Points 13.11
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")