Juudge (reburm)

Race #14

View Pit Stop page for race #14 by reburmGhost race

View profile for Juudge (reburm)

Official speed 64.31 wpm (28.74 seconds elapsed during race)
Race Start July 17, 2012 1:40:27pm UTC
Race Finish July 17, 2012 1:40:55pm 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")