Jon (jlachney)

Race #31

View Pit Stop page for race #31 by jlachneyGhost race

View profile for Jon (jlachney)

Official speed 88.82 wpm (20.81 seconds elapsed during race)
Race Start May 8, 2018 10:56:05pm UTC
Race Finish May 8, 2018 10:56:26pm UTC
Outcome Win (1 of 3)
Opponents 2. jasontime12345 (40.84 wpm)
Accuracy 96.0%
Points 31.09
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")