Emil (limeforce)

Race #8

View Pit Stop page for race #8 by limeforceGhost race

View profile for Emil (limeforce)

Official speed 40.86 wpm (45.23 seconds elapsed during race)
Race Start March 18, 2013 2:13:19pm UTC
Race Finish March 18, 2013 2:14:04pm UTC
Outcome No win (2 of 3)
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")