potato (omgpotatoes)

Race #7

View Pit Stop page for race #7 by omgpotatoesGhost race

View profile for potato (omgpotatoes)

Official speed 61.97 wpm (29.82 seconds elapsed during race)
Race Start May 27, 2014 4:06:34am UTC
Race Finish May 27, 2014 4:07:04am UTC
Outcome No win (2 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")