(sidd_)

Race #134

View Pit Stop page for race #134 by sidd_Ghost race

View profile for (sidd_)

Official speed 116.25 wpm (15.90 seconds elapsed during race)
Race Start February 16, 2019 5:41:11am UTC
Race Finish February 16, 2019 5:41:27am UTC
Outcome Win (1 of 5)
Opponents 2. deroche1 (97.62 wpm)
3. arc_sec (85.72 wpm)
4. spondulix (66.03 wpm)
5. actuallynonquitforlife (57.44 wpm)
Accuracy 98.0%
Points 40.69
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")