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

Race #11

View Pit Stop page for race #11 by cptbbqGhost race

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

Official speed 89.26 wpm (20.70 seconds elapsed during race)
Race Start October 15, 2017 4:13:50am UTC
Race Finish October 15, 2017 4:14:10am UTC
Outcome Win (1 of 3)
Accuracy 97.0%
Points 31.24
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")