Gabor (gktek)

Race #35

View Pit Stop page for race #35 by gktekGhost race

View profile for Gabor (gktek)

Official speed 91.41 wpm (20.22 seconds elapsed during race)
Race Start October 2, 2013 2:31:16pm UTC
Race Finish October 2, 2013 2:31:36pm UTC
Outcome Win (1 of 3)
Accuracy 97.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")