Francis (xeomorpher)

Race #10

View Pit Stop page for race #10 by xeomorpherGhost race

View profile for Francis (xeomorpher)

Official speed 37.74 wpm (48.97 seconds elapsed during race)
Race Start December 28, 2013 12:28:12am UTC
Race Finish December 28, 2013 12:29:01am UTC
Outcome No win (3 of 3)
Opponents 1. redstonewarrior (69.93 wpm)
Accuracy 88.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")