Difference between revisions of "Print"
Jump to navigation
Jump to search
(Undo revision 879642 by ANSI Soderstrom (Talk) Degrades the usability of the article. See my comment on the jira issue.) |
m (Grammatical correction) |
||
Line 21: | Line 21: | ||
} | } | ||
</lsl> | </lsl> | ||
}}{{#vardefine:notes|This feature of LSL should probably never be used by anyone other | }}{{#vardefine:notes|This feature of LSL should probably never be used by anyone other than LL. | ||
}}{{#vardefine:caveats| | }}{{#vardefine:caveats| | ||
}}{{#vardefine:helpers| | }}{{#vardefine:helpers| |
Revision as of 11:44, 3 April 2013
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 than LL.