Laurie my love (bossrubik)

Race #189

View Pit Stop page for race #189 by bossrubikGhost race

View profile for Laurie my love (bossrubik)

Official speed 65.99 wpm (28.00 seconds elapsed during race)
Race Start June 8, 2013 6:11:26am UTC
Race Finish June 8, 2013 6:11:54am UTC
Outcome Win (1 of 3)
Accuracy 97.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")