zach (zachleachtx)

Race #3

View Pit Stop page for race #3 by zachleachtxGhost race

View profile for zach (zachleachtx)

Official speed 61.83 wpm (29.89 seconds elapsed during race)
Race Start September 15, 2020 3:22:32pm UTC
Race Finish September 15, 2020 3:23:02pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 21.64
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")