#Loop question
1 messages · Page 1 of 1 (latest)
it should be printing "ABBBBB" and repeat that 5 times and the reason it doesn't do ABABAB... is because in the first loop you call another loop and the first loop cannot continue until the other loop is finished
-# hope that made sense
np
if you want ABAB...
for count=1,5,1 do
print("A")
print("B")
end
unsure if this was to learn for loops or if it was to actually do that but yea
ABBBBABBBBABBBBABBBBABBBB, myabe the input will be like this
erm actually its ABBBBB not ABBBB