Martin (mpgo13)

Race #11

View Pit Stop page for race #11 by mpgo13Ghost race

View profile for Martin (mpgo13)

Official speed 73.86 wpm (25.02 seconds elapsed during race)
Race Start April 30, 2011 8:53:48pm UTC
Race Finish April 30, 2011 8:54:13pm UTC
Outcome No win (2 of 3)
Opponents 1. jo5ef (75.08 wpm)
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")