[Tr]EpicThomas (epicthomas)

Race #7

View Pit Stop page for race #7 by epicthomasGhost race

View profile for [Tr]EpicThomas (epicthomas)

Official speed 46.69 wpm (39.58 seconds elapsed during race)
Race Start October 18, 2012 8:56:37pm UTC
Race Finish October 18, 2012 8:57:17pm UTC
Outcome Win (1 of 3)
Accuracy 92.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")