NebulaGrey (hellishemo1)

Race #27

View Pit Stop page for race #27 by hellishemo1Ghost race

View profile for NebulaGrey (hellishemo1)

Official speed 55.43 wpm (33.34 seconds elapsed during race)
Race Start July 25, 2011 3:07:24pm UTC
Race Finish July 25, 2011 3:07:57pm UTC
Outcome No win (1 of 1)
Accuracy 94.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")