snail (snail0)

Race #10

View Pit Stop page for race #10 by snail0Ghost race

View profile for snail (snail0)

Official speed 47.17 wpm (39.18 seconds elapsed during race)
Race Start September 5, 2011 2:43:48am UTC
Race Finish September 5, 2011 2:44:27am UTC
Outcome No win (1 of 1)
Accuracy 88.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")