Michael (mickay)

Race #2

View Pit Stop page for race #2 by mickayGhost race

View profile for Michael (mickay)

Official speed 26.58 wpm (69.53 seconds elapsed during race)
Race Start September 7, 2013 4:15:04pm UTC
Race Finish September 7, 2013 4:16:14pm UTC
Outcome Win (1 of 2)
Accuracy 87.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")