SkimnerPhi (skyminer707)

Race #12

View Pit Stop page for race #12 by skyminer707Ghost race

View profile for SkimnerPhi (skyminer707)

Official speed 47.76 wpm (38.69 seconds elapsed during race)
Race Start March 17, 2014 7:24:58pm UTC
Race Finish March 17, 2014 7:25:37pm UTC
Outcome Win (1 of 2)
Opponents 2. n8thaniel (46.33 wpm)
Accuracy 90.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")