too much lag (actuallyaccurate4life)

Race #247

View Pit Stop page for race #247 by actuallyaccurate4lifeGhost race

View profile for too much lag (actuallyaccurate4life)

Official speed 67.91 wpm (27.21 seconds elapsed during race)
Race Start August 16, 2019 10:31:50am UTC
Race Finish August 16, 2019 10:32:17am UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 23.77
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")