Almond (almondcookie)

Race #4

View Pit Stop page for race #4 by almondcookieGhost race

View profile for Almond (almondcookie)

Official speed 53.60 wpm (34.48 seconds elapsed during race)
Race Start December 10, 2012 3:26:36am UTC
Race Finish December 10, 2012 3:27:11am UTC
Outcome Win (1 of 2)
Opponents 2. tyrose7en (31.83 wpm)
Accuracy 99.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")