obh (_r_s_)

Race #2

View Pit Stop page for race #2 by _r_s_Ghost race

View profile for obh (_r_s_)

Official speed 49.77 wpm (37.13 seconds elapsed during race)
Race Start May 7, 2011 9:53:53am UTC
Race Finish May 7, 2011 9:54:30am UTC
Outcome Win (1 of 3)
Accuracy 91.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")