{{{ /* Primer programa Processing. */ /* Carlos Soto */ /* Check 01/07/2011 */ int i; void setup() { size(450, 450); } void draw() { background(255, 204, 0); PFont font; font = loadFont("Ziggurat.vlw"); textFont(font, 32); text("Cenditel", mouseX, mouseY); smooth(); } }}}