Alex (pumaking49)

Race #1

View Pit Stop page for race #1 by pumaking49Ghost race

View profile for Alex (pumaking49)

Official speed 74.05 wpm (24.96 seconds elapsed during race)
Race Start August 3, 2013 5:56:40am UTC
Race Finish August 3, 2013 5:57:05am 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")