✔️▄◘🚀!new_luca@yahoo.com on Colemak | (lucageorge)

Race #17

View Pit Stop page for race #17 by lucageorgeGhost race

View profile for ✔️▄◘🚀!new_luca@yahoo.com on Colemak | (lucageorge)

Official speed 63.60 wpm (29.06 seconds elapsed during race)
Race Start June 29, 2012 7:09:03pm UTC
Race Finish June 29, 2012 7:09:32pm UTC
Outcome Win (1 of 2)
Accuracy 94.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")