piot (piot)

Race #10

View Pit Stop page for race #10 by piotGhost race

View profile for piot (piot)

Official speed 30.75 wpm (60.10 seconds elapsed during race)
Race Start November 3, 2012 4:18:09pm UTC
Race Finish November 3, 2012 4:19:09pm UTC
Outcome No win (2 of 3)
Accuracy 92.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")