Erik (eglimpse)

Race #8

View Pit Stop page for race #8 by eglimpseGhost race

View profile for Erik (eglimpse)

Official speed 52.52 wpm (35.19 seconds elapsed during race)
Race Start January 13, 2012 4:11:12am UTC
Race Finish January 13, 2012 4:11:47am UTC
Outcome Win (1 of 3)
Accuracy 96.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")