Hello World! I'm going to have three guys take turns counting in Alice3. I have 3 bipeds and I want them to count 1, 2, 3, 4, 5, 6 and keep going forever. So I need a variable, which is going to be an integer and I'm going to name it counter. And give it an initial value of zero. And I'm going to use a while loop. And say while true, that means it's going to go forever and ever. What I want to do is inside the I need to counter equals counter and then do a little math, and say counter +1. And then I'm going to have the Troll say custom text, I just want him to say the number, so I'm just going to leave this blank, and then I'm going to say plus an integer counter. And if I do this, just as it is right now, then, only the Troll is going to count. The Troll would count [Let's restart that] 1, 2, 3, and so on. But, I want them all to take turns counting. So, I'm going to copy this to the clipboard, and then drag it in down here. and copy this to the clipboard and drag it in down here, and change this to Thor. And if I run this now, those two guys take turns saying it. So I'm going to copy that to the clipboard, and copy that to the clipboard and drg it in. and this time I'm going to change it to the Ogre. And if I run that 1, 2, 3, 4, 5, 6, and they are taking turns counting. If I wanted them to stop when they got to some point, I'm going to change this to a relational whole number, and say that the counter is less than... Let's say 9, and run this: 1, 2, 3, 4, 5, 6, 7, 8, 9 and it ends. And it's important that this be a multiple of 3, I have three guys. So if I wanted to take turns, let's change this to 10. Just so you can can see what happens . this while is a checkpoint: If counter is less than 10, were going to go into this loop, and do the entire thing. Let's run this: we have 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, and then it stops. Because when counter was 9, that was less than 10 change to one [plus 0ne], And the trolls say 10. Then it became 11, and Thor said 11. and it became 12 and the Ogre says 12. So this is just a checkpoint: it's important to remember that. And that's it for now.