md`<pre>
poem = Array()[words of the poem]
alphabet = Array(26)["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"]
poem_copy = Array(length(poem))[ones or something idk]
Loop to flash through letters
Basically different poem_copy(n) = alphabet(m) at different times
rate increases over time
if poem(n) = alphabet(current number)
letter turns green
if space bar pressed
if poem(k) = alphabet(current number)
break loop (aka stop cycling through letters)
else
letter turns red for half a second, but cycling continues
*after all loops are written for letter clusters*
if poem = poem_copy
music reverses? Tbh not sure whether I should worry about music rn
if poem ~= poem_copy
words shake
pause
for 1:number of letter clusters
fix one letter cluster
pause
</pre>`