Felix (flashy123)

Race #7

View Pit Stop page for race #7 by flashy123Ghost race

View profile for Felix (flashy123)

Official speed 79.21 wpm (23.33 seconds elapsed during race)
Race Start January 28, 2011 12:02:54am UTC
Race Finish January 28, 2011 12:03:18am UTC
Outcome Win (1 of 3)
Opponents 3. dacan (48.58 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")