Jon (jlachney)

Race #30

View Pit Stop page for race #30 by jlachneyGhost race

View profile for Jon (jlachney)

Official speed 85.29 wpm (21.67 seconds elapsed during race)
Race Start May 8, 2018 10:54:50pm UTC
Race Finish May 8, 2018 10:55:12pm UTC
Outcome Win (1 of 2)
Opponents 2. jasontime12345 (45.73 wpm)
Accuracy 97.0%
Points 29.85
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")