J (statuskuo)

Race #2

View Pit Stop page for race #2 by statuskuoGhost race

View profile for J (statuskuo)

Official speed 62.20 wpm (29.71 seconds elapsed during race)
Race Start April 22, 2011 10:24:44pm UTC
Race Finish April 22, 2011 10:25:14pm UTC
Outcome Win (1 of 3)
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")