Kevin (k39chen)

Race #1

View Pit Stop page for race #1 by k39chenGhost race

View profile for Kevin (k39chen)

Official speed 56.38 wpm (32.78 seconds elapsed during race)
Race Start September 12, 2013 9:35:47pm UTC
Race Finish September 12, 2013 9:36:20pm UTC
Outcome No win (2 of 2)
Accuracy 91.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")