Jekri (thurginesis)

Race #4

View Pit Stop page for race #4 by thurginesisGhost race

View profile for Jekri (thurginesis)

Official speed 59.77 wpm (30.92 seconds elapsed during race)
Race Start August 31, 2017 8:20:48am UTC
Race Finish August 31, 2017 8:21:19am UTC
Outcome No win (2 of 10)
Opponents 1. rstacruz (85.04 wpm)
5. akosipc (53.99 wpm)
6. stlsixers (52.42 wpm)
9. xerxesregulus (29.14 wpm)
Accuracy 98.0%
Points 20.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")