xxxxxxxxxx
// this is a small comment
/* this is a
long comment */
// interger variables - whole number
int mylo = 2;
// float varaible - number with decimal
float buster = 1;
float bailey = 0;
// boolean
boolean CatsAreCute = true;
// String
String Feelings = " I have";
String B = "and";
String Sauce = "dogs";
String W = "cat,";
String Family = "brothers";
String No = "sisters.";
// compute print info
println ( Feelings, mylo, Sauce, B, buster, W, Feelings, mylo, Family, B, bailey, No);