/**
* Fonts
*
*
Elie Zananiri
* CART 253, Winter 2008
*/
// set up the applet
size(400, 400);
smooth();
background(0);
fill(210, 5, 5);
// load and set the font
PFont f = loadFont("Skia-48.vlw");
textFont(f, 24);
// note the use of double quotes
String aString = "I am";
String bString = "a banana";
String cString = aString + bString;
text(cString, 50, 50); //writes "I ama banana" to the screen
String dString = aString + " " + bString;
text(dString, 50, 100); // writes "I am a banana" to the screen
text(dString.length(), 50, 150); // writes "13" to the screen
char c = dString.charAt(3);
text(c, 50, 200); // writes "m" to the screen