SkimnerPhi (skyminer707)

Race #13

View Pit Stop page for race #13 by skyminer707Ghost race

View profile for SkimnerPhi (skyminer707)

Official speed 41.57 wpm (44.46 seconds elapsed during race)
Race Start March 17, 2014 7:26:16pm UTC
Race Finish March 17, 2014 7:27:01pm UTC
Outcome No win (2 of 2)
Opponents 1. n8thaniel (43.49 wpm)
Accuracy 85.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")