Martin (mpgo13)

Race #18

View Pit Stop page for race #18 by mpgo13Ghost race

View profile for Martin (mpgo13)

Official speed 71.85 wpm (25.72 seconds elapsed during race)
Race Start April 30, 2011 9:00:53pm UTC
Race Finish April 30, 2011 9:01:19pm UTC
Outcome No win (2 of 2)
Opponents 1. jo5ef (84.79 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")