Grace (glimlol)

Race #1

View Pit Stop page for race #1 by glimlolGhost race

View profile for Grace (glimlol)

Official speed 41.55 wpm (44.48 seconds elapsed during race)
Race Start March 18, 2011 9:23:23pm UTC
Race Finish March 18, 2011 9:24:08pm UTC
Outcome No win (2 of 3)
Opponents 1. supr3m3k1mch1 (68.47 wpm)
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")