Print: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
| 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 | ||
Revision as of 14:22, 25 April 2010
| Deletion Requested |
|---|
| The deletion of this article was requested for the following reason: |
| If there is a need to discuss the deletion of this article, please add your comment(s) here. |
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
- 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
<lsl>//Make the server beep on click string bell = "%07";
default {
state_entry()
{
bell = llUnescapeURL(bell);
}
touch_start(integer a)
{
print(bell);
}
} </lsl>
Notes
This feature of LSL should probably never be used by anyone other then LL.