Eric (sirjinx)

Race #1

View Pit Stop page for race #1 by sirjinxGhost race

View profile for Eric (sirjinx)

Official speed 24.61 wpm (75.09 seconds elapsed during race)
Race Start January 14, 2012 5:22:12pm UTC
Race Finish January 14, 2012 5:23:27pm UTC
Outcome No win (3 of 3)
Accuracy 99.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")