Alex (exela)

Race #3

View Pit Stop page for race #3 by exelaGhost race

View profile for Alex (exela)

Official speed 42.57 wpm (43.41 seconds elapsed during race)
Race Start March 22, 2012 11:39:41pm UTC
Race Finish March 22, 2012 11:40:25pm UTC
Outcome No win (2 of 2)
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")