Durim (dura007k)

Race #31

View Pit Stop page for race #31 by dura007kGhost race

View profile for Durim (dura007k)

Official speed 53.26 wpm (34.70 seconds elapsed during race)
Race Start October 30, 2014 5:47:24am UTC
Race Finish October 30, 2014 5:47:58am UTC
Outcome Win (1 of 3)
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")