xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
ellipse(mouseX, mouseY, 20, 20);
}
// from here down is my code, i'm not sure what the above text is so i'm afraid to delete it, but my code works on processing
int twin = 18;
int sister = 48;
int one = 1;
float siblings = 1.5;
String i = "I am";
String first = "I have";
String second = "siblings because";
String boi = "of them is a half sibling";
String third = "My twin brother is also";
String fourth = "and my half sister is";
String lol = "Isn't that wild?";
println(i , twin);
println(first , siblings , second , one , boi);
println(third , twin , fourth , sister);
println(lol);