German (german_montejo)

Race #1

View Pit Stop page for race #1 by german_montejoGhost race

View profile for German (german_montejo)

Official speed 36.41 wpm (50.76 seconds elapsed during race)
Race Start April 14, 2015 5:27:12am UTC
Race Finish April 14, 2015 5:28:03am UTC
Outcome No win (3 of 4)
Opponents 1. muratk (58.58 wpm)
Accuracy 90.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")