littlephild (littlephild)

Race #33

View Pit Stop page for race #33 by littlephildGhost race

View profile for littlephild (littlephild)

Official speed 61.07 wpm (30.26 seconds elapsed during race)
Race Start March 3, 2014 9:15:04am UTC
Race Finish March 3, 2014 9:15:34am UTC
Outcome Win (1 of 3)
Accuracy 90.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")