llAcos.lsl 152 B

12345678
  1. default
  2. {
  3. state_entry()
  4. {
  5. float r = llFrand(2) - 1.0;
  6. llOwnerSay("The arccosine of " + (string)r + " is " + llAcos(r));
  7. }
  8. }