Difference between revisions of "Print"

From Second Life Wiki
Jump to navigation Jump to search
m (format glitch)
 
(4 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{delete|https://jira.secondlife.com/browse/WEB-1584}}
{{Multi-lang}}{{LSL Header|
{{Multi-lang}}{{LSL Header|
}}{{#vardefine:name|print
}}{{#vardefine:name|print
Line 8: Line 6:
{{LSL DefineRow|type|value|{{#var:p_value_desc}}}}
{{LSL DefineRow|type|value|{{#var:p_value_desc}}}}
{{!}}}
{{!}}}
}}{{#vardefine:examples|<lsl>//Make the server beep on click
}}{{#vardefine:examples|<source lang="lsl2">//Make the server beep on click
string bell = "%07";
string bell = "%07";


Line 22: Line 20:
     }
     }
}
}
</lsl>
</source>
}}{{#vardefine:notes|This feature of LSL should probably never be used by anyone other then LL.
}}{{#vardefine: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.
}}{{#vardefine:caveats|
}}{{#vardefine:caveats|
}}{{#vardefine:helpers|
}}{{#vardefine:helpers|

Latest revision as of 03:45, 6 May 2017

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.