(mylove4u)

Race #154

View Pit Stop page for race #154 by mylove4uGhost race

View profile for (mylove4u)

Official speed 78.67 wpm (23.49 seconds elapsed during race)
Race Start December 14, 2014 2:47:09pm UTC
Race Finish December 14, 2014 2:47:32pm UTC
Outcome Win (1 of 2)
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")