/* built with Studio Sketchpad:
* https://sketchpad.cc
*
* observe the evolution of this sketch:
* https://lowell-simon.sketchpad.cc/sp/pad/view/ro.a$EdzbLMmEr/rev.97
*
* authors:
* Art Simon
* license (unless otherwise specified):
* creative commons attribution-share alike 3.0 license.
* https://creativecommons.org/licenses/by-sa/3.0/
*/
int[] temps = {212,32,-40};
void setup()
{
size(300,300);
}
void draw()
{
background(0);
text("There are" + temps.length + " temperatures",10,10);
text(temps[0],10,30);
text(temps[1],10,50);
text(temps[2],10,70);
}