# Genuary2026_Quine

# MessyQuine

**MessyQuine** is coded in P5Js and is a Moving,formatted and Jittery Quine`(Genuary 2026 Prompt 11)`.

## Video

%[https://youtu.be/nrUZabVzmgM] 

## P5JS Code/Quine Poem

```javascript


function setup() { // Coloring and Emojing
    
    
	createCanvas(800, 1500);
    textAlign(LEFT)
    eating = "🍔🍔🍔🍔"
    then_eating = ("🍟🍟🍟")
    maybe_adding = ("🌭🌭")
    finishing_with = ("🥞")
    drinking = ("🧊🧊🥝🥥🍇")
  
}
function draw() { //quining
  
  if (second() % 6 < 2)
    {
    background('orange')
      fill('white')
     textFont('Verdana');
      textSize(12)
      
    }
  else if (second() % 6 > 4) {
    background('yellow')
    fill('black')
    textFont('Courier New'); 
    textSize(15)
    
  }
  else {
   fill('blue')
    textFont('Times New Roman'); 
    textSize(18) 
    
  }
  const recipe = window.setup.toString();
  text(recipe, 4, 59 + second() % 3);
  const recipe2 = window.draw.toString();
  text(recipe2, 404 + second() % 3, 59);
}
```
