Blake (blakee)

Race #6

View Pit Stop page for race #6 by blakeeGhost race

View profile for Blake (blakee)

Official speed 40.57 wpm (45.55 seconds elapsed during race)
Race Start February 7, 2016 12:49:53pm UTC
Race Finish February 7, 2016 12:50:38pm UTC
Outcome Win (1 of 2)
Opponents 2. isaac113 (25.10 wpm)
Accuracy 95.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")