marius (marius_)

Race #4

View Pit Stop page for race #4 by marius_Ghost race

View profile for marius (marius_)

Official speed 72.89 wpm (25.35 seconds elapsed during race)
Race Start May 21, 2011 9:13:06am UTC
Race Finish May 21, 2011 9:13:31am UTC
Outcome No win (2 of 3)
Accuracy 93.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")