Mateusz (krakeusz)

Race #5

View Pit Stop page for race #5 by krakeuszGhost race

View profile for Mateusz (krakeusz)

Official speed 51.79 wpm (35.68 seconds elapsed during race)
Race Start February 20, 2013 10:42:16am UTC
Race Finish February 20, 2013 10:42:52am UTC
Outcome Win (1 of 3)
Accuracy 95.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")