Steve (serialkiller)

Race #44

View Pit Stop page for race #44 by serialkillerGhost race

View profile for Steve (serialkiller)

Official speed 84.53 wpm (21.86 seconds elapsed during race)
Race Start April 21, 2012 5:57:59am UTC
Race Finish April 21, 2012 5:58:21am UTC
Outcome Win (1 of 3)
Accuracy 96.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")