J (hellsome)

Race #17

View Pit Stop page for race #17 by hellsomeGhost race

View profile for J (hellsome)

Official speed 46.81 wpm (39.48 seconds elapsed during race)
Race Start December 11, 2011 8:51:53pm UTC
Race Finish December 11, 2011 8:52:33pm UTC
Outcome No win (1 of 1)
Accuracy 99.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")