Basar (bsrykt)

Race #6

View Pit Stop page for race #6 by bsryktGhost race

View profile for Basar (bsrykt)

Official speed 51.06 wpm (36.19 seconds elapsed during race)
Race Start December 12, 2012 10:05:23am UTC
Race Finish December 12, 2012 10:05:59am UTC
Outcome Win (1 of 2)
Accuracy 95.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")