good Bye lol (but a Little catty) (cptbbq)

Race #2

View Pit Stop page for race #2 by cptbbqGhost race

View profile for good Bye lol (but a Little catty) (cptbbq)

Official speed 82.70 wpm (22.35 seconds elapsed during race)
Race Start October 8, 2017 12:56:08am UTC
Race Finish October 8, 2017 12:56:31am UTC
Outcome Win (1 of 2)
Accuracy 97.0%
Points 28.94
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")