Samuel (samuelm2)

Race #3

View Pit Stop page for race #3 by samuelm2Ghost race

View profile for Samuel (samuelm2)

Official speed 40.83 wpm (45.26 seconds elapsed during race)
Race Start April 16, 2013 10:11:37pm UTC
Race Finish April 16, 2013 10:12:22pm UTC
Outcome No win (2 of 2)
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")