snail (snail0)

Race #4

View Pit Stop page for race #4 by snail0Ghost race

View profile for snail (snail0)

Official speed 43.55 wpm (42.43 seconds elapsed during race)
Race Start September 5, 2011 2:36:40am UTC
Race Finish September 5, 2011 2:37:22am UTC
Outcome No win (1 of 1)
Accuracy 87.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")