(mylove4u)

Race #169

View Pit Stop page for race #169 by mylove4uGhost race

View profile for (mylove4u)

Official speed 66.52 wpm (27.78 seconds elapsed during race)
Race Start March 26, 2015 6:49:11am UTC
Race Finish March 26, 2015 6:49:38am UTC
Outcome Win (1 of 2)
Opponents 2. kiawa88 (21.62 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")