(mylove4u)

Race #158

View Pit Stop page for race #158 by mylove4uGhost race

View profile for (mylove4u)

Official speed 52.38 wpm (35.28 seconds elapsed during race)
Race Start December 14, 2014 2:54:20pm UTC
Race Finish December 14, 2014 2:54:55pm UTC
Outcome Win (1 of 2)
Accuracy 91.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")