Byron (reckful)

Race #1

View Pit Stop page for race #1 by reckfulGhost race

View profile for Byron (reckful)

Official speed 83.03 wpm (22.26 seconds elapsed during race)
Race Start August 22, 2015 1:24:27pm UTC
Race Finish August 22, 2015 1:24:50pm UTC
Outcome Win (1 of 4)
Opponents 2. krewe11a (44.46 wpm)
Accuracy 94.0%
Points 0.00
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")