Wiggle (insy2)

Race #1

View Pit Stop page for race #1 by insy2Ghost race

View profile for Wiggle (insy2)

Official speed 68.14 wpm (27.12 seconds elapsed during race)
Race Start April 11, 2011 5:34:20am UTC
Race Finish April 11, 2011 5:34:47am UTC
Outcome Win (1 of 3)
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")