Insta: Thomas.Rowland (chopninjabob)

Race #221

View Pit Stop page for race #221 by chopninjabobGhost race

View profile for Insta: Thomas.Rowland (chopninjabob)

Official speed 54.07 wpm (34.18 seconds elapsed during race)
Race Start July 25, 2011 4:56:35pm UTC
Race Finish July 25, 2011 4:57:09pm UTC
Outcome No win (1 of 1)
Accuracy 94.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")