Daniel (dschonhaut)

Race #1

View Pit Stop page for race #1 by dschonhautGhost race

View profile for Daniel (dschonhaut)

Official speed 45.67 wpm (40.46 seconds elapsed during race)
Race Start June 12, 2011 2:51:37am UTC
Race Finish June 12, 2011 2:52:18am UTC
Outcome No win (1 of 1)
Accuracy 95.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")