Kµkkain (tsvuk)

Race #13

View Pit Stop page for race #13 by tsvukGhost race

View profile for Kµkkain (tsvuk)

Official speed 70.94 wpm (26.05 seconds elapsed during race)
Race Start January 28, 2011 7:14:26pm UTC
Race Finish January 28, 2011 7:14:52pm UTC
Outcome Win (1 of 2)
Opponents 2. danilocordeiro (68.38 wpm)
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")