Ry (skirts)

Race #1

View Pit Stop page for race #1 by skirtsGhost race

View profile for Ry (skirts)

Official speed 41.99 wpm (44.01 seconds elapsed during race)
Race Start April 1, 2012 8:22:38am UTC
Race Finish April 1, 2012 8:23:22am UTC
Outcome Win (1 of 3)
Accuracy 92.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")