Emil (limeforce)

Race #1

View Pit Stop page for race #1 by limeforceGhost race

View profile for Emil (limeforce)

Official speed 37.84 wpm (48.84 seconds elapsed during race)
Race Start March 18, 2013 2:02:39pm UTC
Race Finish March 18, 2013 2:03:28pm UTC
Outcome Win (1 of 3)
Accuracy 92.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")