GINOO AND FLANEUR I LOVE YOU TOO (mako640)

Race #10

View Pit Stop page for race #10 by mako640Ghost race

View profile for GINOO AND FLANEUR I LOVE YOU TOO (mako640)

Official speed 108.35 wpm (17.06 seconds elapsed during race)
Race Start July 20, 2019 8:29:22pm UTC
Race Finish July 20, 2019 8:29:39pm UTC
Outcome No win (2 of 6)
Opponents 1. sidd_ (127.02 wpm)
3. keegant (81.43 wpm)
4. spondulix (73.39 wpm)
5. storm (69.91 wpm)
6. hyper_racer (68.38 wpm)
Accuracy 97.0%
Points 37.92
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")