permil (permil)

Race #55

View Pit Stop page for race #55 by permilGhost race

View profile for permil (permil)

Official speed 94.86 wpm (19.48 seconds elapsed during race)
Race Start February 25, 2019 2:20:39pm UTC
Race Finish February 25, 2019 2:20:58pm UTC
Outcome No win (3 of 5)
Opponents 1. w_h_ (99.66 wpm)
2. paraphrohn (97.11 wpm)
Accuracy 99.0%
Points 33.20
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")