jason (pravus)

Race #4

View Pit Stop page for race #4 by pravusGhost race

View profile for jason (pravus)

Official speed 66.76 wpm (27.68 seconds elapsed during race)
Race Start February 16, 2012 8:50:13pm UTC
Race Finish February 16, 2012 8:50:41pm UTC
Outcome No win (2 of 3)
Opponents 3. haggis (63.39 wpm)
Accuracy 92.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")