potato (omgpotatoes)

Race #14

View Pit Stop page for race #14 by omgpotatoesGhost race

View profile for potato (omgpotatoes)

Official speed 52.58 wpm (35.15 seconds elapsed during race)
Race Start February 25, 2015 4:08:04am UTC
Race Finish February 25, 2015 4:08:39am UTC
Outcome No win (3 of 3)
Accuracy 88.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")