Paul (isea)

Race #7

View Pit Stop page for race #7 by iseaGhost race

View profile for Paul (isea)

Official speed 33.12 wpm (55.80 seconds elapsed during race)
Race Start March 11, 2012 7:54:48pm UTC
Race Finish March 11, 2012 7:55:44pm UTC
Outcome Win (1 of 3)
Accuracy 93.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")