fullscreen int l=99;int s=0;void setup(){size(99,99);textFont(createFont("",25));}void draw(){background(l);char c=char(l);text(c,43,74);text(s,10,30);if(millis()< 30000&&key==c){l=int(random(97,122));s++;}}
Type the letter that appears on the screen! How many can you get in 30 seconds? Post your score in the comments. Refresh the page to restart the game. Hat tip to Kyle McDonald - I'd never used the textFont(createFont("",)) before. (contest wise this assumes that textFont(createFont does not violate the rules.)