too much lag (actuallyaccurate4life)

Race #235

View Pit Stop page for race #235 by actuallyaccurate4lifeGhost race

View profile for too much lag (actuallyaccurate4life)

Official speed 64.64 wpm (28.59 seconds elapsed during race)
Race Start August 6, 2019 12:21:40pm UTC
Race Finish August 6, 2019 12:22:08pm UTC
Outcome No win (2 of 3)
Accuracy 99.0%
Points 22.62
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")