by Brayla Sana | Apr 19, 2016 | Flow Control, LSL, OSSL, Wiki
A do-while loop is similar to a while loop, but the order in which the parts are executed is different. Format do { statements } while (condition); Example do { llSay(0, “monkey!”); } while (monkeysRemain()); This code will say...