Conner (112669)

Race #1

View Pit Stop page for race #1 by 112669Ghost race

View profile for Conner (112669)

Official speed 63.39 wpm (29.15 seconds elapsed during race)
Race Start April 12, 2013 6:55:27pm UTC
Race Finish April 12, 2013 6:55:56pm UTC
Outcome Win (1 of 3)
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")