selphy (selphy)

Race #2

View Pit Stop page for race #2 by selphyGhost race

View profile for selphy (selphy)

Official speed 68.89 wpm (26.83 seconds elapsed during race)
Race Start December 28, 2012 10:05:19pm UTC
Race Finish December 28, 2012 10:05:46pm UTC
Outcome Win (1 of 2)
Opponents 2. fur3x (42.34 wpm)
Accuracy 91.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")