Michael (mouzshin)

Race #4

View Pit Stop page for race #4 by mouzshinGhost race

View profile for Michael (mouzshin)

Official speed 73.65 wpm (25.09 seconds elapsed during race)
Race Start April 22, 2013 8:35:51pm UTC
Race Finish April 22, 2013 8:36:17pm UTC
Outcome Win (1 of 2)
Accuracy 96.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")