Print

From Second Life Wiki
Revision as of 03:45, 6 May 2017 by Sei Lisa (talk | contribs) (add syntax note)
Jump to navigation Jump to search
The correct title of this article is print. The initial letter is shown capitalized due to technical restrictions.

print(value);

print(value);
• type value value or variable to be printed to stdout

Examples

//Make the server beep on click
string bell = "%07";

default
{
    state_entry()
    {
        bell = llUnescapeURL(bell);
    }
    touch_start(integer a)
    {
        print(bell);
    }
}

Notes

  • **print** is a reserved word, meaning it can't be used for user identifiers.
  • This feature of LSL should probably never be used by anyone other than LL.