Aleix (aleix98y)

Race #2

View Pit Stop page for race #2 by aleix98yGhost race

View profile for Aleix (aleix98y)

Official speed 32.15 wpm (57.48 seconds elapsed during race)
Race Start September 10, 2013 11:14:35pm UTC
Race Finish September 10, 2013 11:15:32pm UTC
Outcome No win (2 of 2)
Opponents 1. selphy (57.77 wpm)
Accuracy 93.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")