NebulaGrey (hellishemo1)

Race #32

View Pit Stop page for race #32 by hellishemo1Ghost race

View profile for NebulaGrey (hellishemo1)

Official speed 62.70 wpm (29.47 seconds elapsed during race)
Race Start August 4, 2011 1:23:18am UTC
Race Finish August 4, 2011 1:23:47am 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")