View Pit Stop page for race #8 by cptbbq — Ghost race
View profile for good Bye lol (but a Little catty) (cptbbq)
Official speed | 87.80 wpm (21.05 seconds elapsed during race) |
---|---|
Race Start | October 8, 2017 1:06:23am UTC |
Race Finish | October 8, 2017 1:06:44am UTC |
Outcome | Win (1 of 3) |
Opponents |
2. aph0tic (38.38 wpm) |
Accuracy | 97.0% |
Points | 30.73 |
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") |