Teixeira (xoooox)

Race #10

View Pit Stop page for race #10 by xooooxGhost race

View profile for Teixeira (xoooox)

Official speed 30.66 wpm (60.27 seconds elapsed during race)
Race Start October 29, 2011 6:02:10pm UTC
Race Finish October 29, 2011 6:03:11pm UTC
Outcome Win (1 of 3)
Accuracy 83.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")