Cătălin ---- music_catalin@yahoo.com (music_catalin)

Race #2

View Pit Stop page for race #2 by music_catalinGhost race

View profile for Cătălin ---- music_catalin@yahoo.com (music_catalin)

Official speed 31.55 wpm (58.57 seconds elapsed during race)
Race Start December 18, 2012 12:49:08pm UTC
Race Finish December 18, 2012 12:50:06pm UTC
Outcome No win (3 of 3)
Opponents 1. smtchahal (59.48 wpm)
2. ahmlmh (43.73 wpm)
Accuracy 95.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")