Wumbo (jap23)

Race #4

View Pit Stop page for race #4 by jap23Ghost race

View profile for Wumbo (jap23)

Official speed 73.97 wpm (24.98 seconds elapsed during race)
Race Start May 4, 2015 7:00:32pm UTC
Race Finish May 4, 2015 7:00:57pm UTC
Outcome Win (1 of 3)
Opponents 2. spelx (53.36 wpm)
3. pidude314 (43.33 wpm)
Accuracy 98.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")