Difference between revisions of "LlAbs"

From Second Life Wiki
Jump to navigation Jump to search
Line 34: Line 34:
</lsl>
</lsl>
|helpers
|helpers
|related={{LSLG|llFabs}}
|also_functions=* {{LSLG|llFabs}}
|also=[http://en.wikipedia.org/wiki/Absolute_value Wikipedia - Absolute value]
|also_articles=* [http://en.wikipedia.org/wiki/Absolute_value Wikipedia - Absolute value]
|notes
|notes
}}
}}

Revision as of 18:17, 27 January 2007

   Outdated templated used

Please change the template from 'LSLFunctionAll' to 'LSL_Function' (just replace 'LSLFunctionAll' with 'LSL_Function', do this after fixing any other erorr messages.

Summary

Function: integer llAbs( integer val );

Returns an integer that is the positive version of val.

• integer val Any integer value

Examples

<lsl> default {

   state_entry()
   {
       llSay(0,"The absolute value of -4 is: "+(string)llAbs(-4) );
   }

}

</lsl>

See Also

Functions

Articles

Deep Notes

Search JIRA for related Issues

Signature

function integer llAbs( integer val );