Print

From Second Life Wiki

Jump to: navigation, search

Template:Needs Translation/de Template:Needs Translation/es Template:Needs Translation/el Template:Needs Translation/fr Template:Needs Translation/he Template:Needs Translation/it Template:Needs Translation/ja Template:Needs Translation/ko Template:Needs Translation/nl Template:Needs Translation/hu Template:Needs Translation/no Template:Needs Translation/da Template:Needs Translation/sv Template:Needs Translation/tr Template:Needs Translation/pl Template:Needs Translation/pt Template:Needs Translation/ru Template:Needs Translation/uk Template:Needs Translation/zh-Hans Template:Needs Translation/zh-Hant

The correct title of this article is print. The initial letter is shown capitalized due to technical restrictions.

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

This feature of LSL should probably never be used by anyone other then LL.

In other languages