Teddy (deimondb)

Race #2

View Pit Stop page for race #2 by deimondbGhost race

View profile for Teddy (deimondb)

Official speed 64.28 wpm (28.75 seconds elapsed during race)
Race Start December 19, 2013 8:07:33am UTC
Race Finish December 19, 2013 8:08:02am UTC
Outcome Win (1 of 3)
Accuracy 95.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")