While Example

Written by Kitsune
// Bromley College
// Linden Script Exhibition
 
// Code for poster 18;
 
default
{
    state_entry()
    {
        llSay(0, "Compile Successful!");
    }
 
    touch_start(integer total_number)
    {
        integer  count = 1;
        integer  maxcount = 3;
        while (count < maxcount)
        {
            llSay(0,"I'm repeating myself");
            count = count + 1;
        }
    }
}
 
// End of code;