yaumul (typingfast1)

Race #1

View Pit Stop page for race #1 by typingfast1Ghost race

View profile for yaumul (typingfast1)

Official speed 39.47 wpm (46.82 seconds elapsed during race)
Race Start December 6, 2014 1:22:10pm UTC
Race Finish December 6, 2014 1:22:56pm UTC
Outcome Win (1 of 3)
Accuracy 92.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")